diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-04-20 17:47:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-24 11:06:54 +0100 |
commit | 0c09ff23a52e7daef1104fc9d1965aebad7a19f4 (patch) | |
tree | a3e9c7681e0390314bf783d90cad32e71b68ce3c /meta/classes/populate_sdk_ext.bbclass | |
parent | 5b1a6abcdedb51aee9b0a80d4c9a1ded6243f6e9 (diff) | |
download | poky-0c09ff23a52e7daef1104fc9d1965aebad7a19f4.tar.gz |
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.
(From OE-Core rev: beaf851ae8aadb5b9e3c0b9840479efcbb05be23)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 22e0ffca28..17a8e8cdf4 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -110,6 +110,9 @@ python copy_buildsystem () { | |||
110 | f.write('POKYQEMUDEPS_forcevariable = ""\n\n') | 110 | f.write('POKYQEMUDEPS_forcevariable = ""\n\n') |
111 | f.write('EXTRA_IMAGEDEPENDS_remove = "qemu-native qemu-helper-native"\n\n') | 111 | f.write('EXTRA_IMAGEDEPENDS_remove = "qemu-native qemu-helper-native"\n\n') |
112 | 112 | ||
113 | # Bypass the default connectivity check if any | ||
114 | f.write('CONNECTIVITY_CHECK_URIS = ""\n\n') | ||
115 | |||
113 | # Another hack, but we want the native part of sstate to be kept the same | 116 | # Another hack, but we want the native part of sstate to be kept the same |
114 | # regardless of the host distro | 117 | # regardless of the host distro |
115 | fixedlsbstring = 'SDK-Fixed' | 118 | fixedlsbstring = 'SDK-Fixed' |