[oe-commits] Paul Eggleton : classes/populate_sdk_ext: disable network connectivity check

git at git.openembedded.org git at git.openembedded.org
Fri Apr 24 10:08:46 UTC 2015


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

Author: Paul Eggleton <paul.eggleton at linux.intel.com>
Date:   Mon Apr 20 17:47:06 2015 +0100

classes/populate_sdk_ext: disable network connectivity check

Most of the time we shouldn't be downloading anything within the
extensible SDK (since it's all pre-built and we have the sstate
artifacts) therefore there's really no need for a connectivity
check, in fact it may just get in the way.

Signed-off-by: Paul Eggleton <paul.eggleton at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/populate_sdk_ext.bbclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index 22e0ffc..17a8e8c 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -110,6 +110,9 @@ python copy_buildsystem () {
         f.write('POKYQEMUDEPS_forcevariable = ""\n\n')
         f.write('EXTRA_IMAGEDEPENDS_remove = "qemu-native qemu-helper-native"\n\n')
 
+        # Bypass the default connectivity check if any
+        f.write('CONNECTIVITY_CHECK_URIS = ""\n\n')
+
         # Another hack, but we want the native part of sstate to be kept the same
         # regardless of the host distro
         fixedlsbstring = 'SDK-Fixed'



More information about the Openembedded-commits mailing list