[oe-commits] Richard Purdie : oeqa/targetbuild: Use DL_DIR for downloads if present

git at git.openembedded.org git at git.openembedded.org
Wed Apr 29 10:00:35 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: dc1d83d021afd77ca8fb948dc47bbd11e3844865
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=dc1d83d021afd77ca8fb948dc47bbd11e3844865

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Tue Apr 28 11:49:18 2015 +0100

oeqa/targetbuild: Use DL_DIR for downloads if present

This isn't a test of wget so if the files we need are present in DL_DIR,
use them from there and save a bit of speed/bandwidth and skip the wget.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oeqa/utils/targetbuild.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/lib/oeqa/utils/targetbuild.py b/meta/lib/oeqa/utils/targetbuild.py
index eeb08ba..d499bb1 100644
--- a/meta/lib/oeqa/utils/targetbuild.py
+++ b/meta/lib/oeqa/utils/targetbuild.py
@@ -26,6 +26,11 @@ class BuildProject():
     # Download self.archive to self.localarchive
     def _download_archive(self):
 
+        dl_dir = self.d.getVar("DL_DIR", True)
+        if dl_dir and os.path.exists(os.path.join(dl_dir, self.archive)):
+            bb.utils.copyfile(os.path.join(dl_dir, self.archive), self.localarchive)
+            return
+
         exportvars = ['HTTP_PROXY', 'http_proxy',
                       'HTTPS_PROXY', 'https_proxy',
                       'FTP_PROXY', 'ftp_proxy',



More information about the Openembedded-commits mailing list