summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/wic.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py
index 07b8312a21..417ba3d26f 100644
--- a/meta/lib/oeqa/selftest/wic.py
+++ b/meta/lib/oeqa/selftest/wic.py
@@ -42,8 +42,7 @@ class Wic(oeSelfTest):
42 42
43 def setUpLocal(self): 43 def setUpLocal(self):
44 """This code is executed before each test method.""" 44 """This code is executed before each test method."""
45 self.write_config('IMAGE_FSTYPES = "iso"\n' 45 self.write_config('MACHINE_FEATURES_append = " efi"\n')
46 'MACHINE_FEATURES_append = " efi"\n')
47 46
48 # Do this here instead of in setUpClass as the base setUp does some 47 # Do this here instead of in setUpClass as the base setUp does some
49 # clean up which can result in the native tools built earlier in 48 # clean up which can result in the native tools built earlier in
@@ -151,7 +150,8 @@ class Wic(oeSelfTest):
151 @testcase(1346) 150 @testcase(1346)
152 def test_iso_image(self): 151 def test_iso_image(self):
153 """Test creation of hybrid iso image with legacy and EFI boot""" 152 """Test creation of hybrid iso image with legacy and EFI boot"""
154 config = 'MACHINE_FEATURES_append = " efi"\n' 153 config = 'INITRAMFS_IMAGE = "core-image-minimal-initramfs"\n'\
154 'MACHINE_FEATURES_append = " efi"\n'
155 self.append_config(config) 155 self.append_config(config)
156 bitbake('core-image-minimal') 156 bitbake('core-image-minimal')
157 self.remove_config(config) 157 self.remove_config(config)