diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-10-16 15:19:20 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-04 10:19:53 +0000 |
commit | 43a1c2dc08b4291e042b6c9ef981bd094ea2c477 (patch) | |
tree | 7325d5b0d2c49a7de35bd04615fa4ed104970ff6 /meta/classes | |
parent | b7936bacf0cc89bdda6722d317274bd4a3af840a (diff) | |
download | openembedded-core-contrib-43a1c2dc08b4291e042b6c9ef981bd094ea2c477.tar.gz |
classes/image: remove obsolete MULTILIB_VENDORS
In oe-core commit 03c5f39b4d7dd8c81e0a130b7d5884e5af039a24,
it removed obsolete codes about variable MULTILIB_VENDORS.
We clean up the rest obsolete codes related with
MULTILIB_VENDORS
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 940bdb6bc0b..fc08653d2d0 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -145,17 +145,6 @@ python () { d.setVar('IMAGE_FEATURES', ' '.join(list(remain_features))) - # Ensure we have the vendor list for complementary package handling - ml_vendor_list = "" - multilibs = d.getVar('MULTILIBS', True) or "" - for ext in multilibs.split(): - eext = ext.split(':') - if len(eext) > 1 and eext[0] == 'multilib': - localdata = bb.data.createCopy(d) - vendor = localdata.getVar("TARGET_VENDOR_virtclass-multilib-" + eext[1], False) - ml_vendor_list += " " + vendor - d.setVar('MULTILIB_VENDORS', ml_vendor_list) - check_image_features(d) initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or "" if initramfs_image != "": |