diff options
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 != "": |