summaryrefslogtreecommitdiffstats
path: root/meta/classes/populate_sdk_ext.bbclass
diff options
context:
space:
mode:
authorQi.Chen@windriver.com <Qi.Chen@windriver.com>2015-09-07 13:42:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-09-09 14:27:42 +0100
commit9f670d18ba5e8e8d75ceca3ab1709d5ba4a5adb3 (patch)
tree10c6f955d18e775832564f63bdc4dd6011f64d84 /meta/classes/populate_sdk_ext.bbclass
parent164136d31064b28c71bcdc189279c92894a11146 (diff)
downloadpoky-9f670d18ba5e8e8d75ceca3ab1709d5ba4a5adb3.tar.gz
populate_sdk_ext: don't remove the native qemu dependencies
These dependencies were deliberately removed because it was assumed that they were provided by nativesdk packages. On the one hand, nativesdk packages in extensible SDK don't have these packages; on the other hand, even if we add these nativesdk packages, they are still not useful because we we need runqemu to run correctly. So we don't remove these native qemu dependencies. (From OE-Core rev: 526537404d5a07189d4c6859f4a572d2107dbfd8) Signed-off-by: Chen Qi <Qi.Chen@windriver.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.bbclass5
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index fa36a9168e..fc2d96f855 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -140,11 +140,6 @@ python copy_buildsystem () {
140 # Some classes are not suitable for SDK, remove them from INHERIT 140 # Some classes are not suitable for SDK, remove them from INHERIT
141 f.write('INHERIT_remove = "%s"\n' % d.getVar('SDK_INHERIT_BLACKLIST')) 141 f.write('INHERIT_remove = "%s"\n' % d.getVar('SDK_INHERIT_BLACKLIST'))
142 142
143 # This is a bit of a hack, but we really don't want these dependencies
144 # (we're including them in the SDK as nativesdk- versions instead)
145 f.write('POKYQEMUDEPS_forcevariable = ""\n\n')
146 f.write('EXTRA_IMAGEDEPENDS_remove = "qemu-native qemu-helper-native"\n\n')
147
148 # Bypass the default connectivity check if any 143 # Bypass the default connectivity check if any
149 f.write('CONNECTIVITY_CHECK_URIS = ""\n\n') 144 f.write('CONNECTIVITY_CHECK_URIS = ""\n\n')
150 145