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:27:07 +0000 |
commit | 150f0f5fff017c3c9cebf07c202bcb3b681986e8 (patch) | |
tree | 703adf93113808a74a089aae30c2e36e767c1289 /meta/classes/image.bbclass | |
parent | f19b4e995ea47f9243f152b39337330307453c9f (diff) | |
download | poky-150f0f5fff017c3c9cebf07c202bcb3b681986e8.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)
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>
Diffstat (limited to 'meta/classes/image.bbclass')
-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 != "": |