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:18:26 +0000 |
commit | de6e6a5a62dd0d7447ea20c7568c61b562b8c8a2 (patch) | |
tree | 4238b7374ceba74cb855f49ea8bdd96bd084a4c8 /meta/classes | |
parent | 5e7218e8b096888283a99ef042225f4429987af4 (diff) | |
download | poky-de6e6a5a62dd0d7447ea20c7568c61b562b8c8a2.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
(From OE-Core rev: 43a1c2dc08b4291e042b6c9ef981bd094ea2c477)
(From OE-Core rev: 18be5e2400fb2ca1a46ea504967f3c3522af4fdc)
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 940bdb6bc0..fc08653d2d 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -145,17 +145,6 @@ python () { | |||
145 | 145 | ||
146 | d.setVar('IMAGE_FEATURES', ' '.join(list(remain_features))) | 146 | d.setVar('IMAGE_FEATURES', ' '.join(list(remain_features))) |
147 | 147 | ||
148 | # Ensure we have the vendor list for complementary package handling | ||
149 | ml_vendor_list = "" | ||
150 | multilibs = d.getVar('MULTILIBS', True) or "" | ||
151 | for ext in multilibs.split(): | ||
152 | eext = ext.split(':') | ||
153 | if len(eext) > 1 and eext[0] == 'multilib': | ||
154 | localdata = bb.data.createCopy(d) | ||
155 | vendor = localdata.getVar("TARGET_VENDOR_virtclass-multilib-" + eext[1], False) | ||
156 | ml_vendor_list += " " + vendor | ||
157 | d.setVar('MULTILIB_VENDORS', ml_vendor_list) | ||
158 | |||
159 | check_image_features(d) | 148 | check_image_features(d) |
160 | initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or "" | 149 | initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or "" |
161 | if initramfs_image != "": | 150 | if initramfs_image != "": |