diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-10-16 15:19:20 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-31 10:17:03 +0000 |
commit | 18be5e2400fb2ca1a46ea504967f3c3522af4fdc (patch) | |
tree | bde9347c41087154cd0fa0eba711bc0b473355d0 /meta | |
parent | 8a2f0192652b96675b6f5484f7548d4e4106db31 (diff) | |
download | openembedded-core-18be5e2400fb2ca1a46ea504967f3c3522af4fdc.tar.gz openembedded-core-18be5e2400fb2ca1a46ea504967f3c3522af4fdc.tar.bz2 openembedded-core-18be5e2400fb2ca1a46ea504967f3c3522af4fdc.zip |
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
(From OE-Core rev: 43a1c2dc08b4291e042b6c9ef981bd094ea2c477)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta')
-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 940bdb6bc0..fc08653d2d 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 != "": |