summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-15 00:15:04 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-15 09:08:43 +0000
commit746d5b3bfddf81af8747e97a056b6ac582a9d991 (patch)
treea134a2c9da9901289ab11caa6bf664ea45acdb8f /meta-yocto-bsp
parentad0d8d2a779ce723ffe584d169b07e1cbf055d49 (diff)
downloadpoky-746d5b3bfddf81af8747e97a056b6ac582a9d991.tar.gz
oeqa/systemd_boot: Ensure wic-tools are available
If mtools isn't present on the underlying system this test would fail. Ensure wic-tools is available in a similar way to other wic selftests in OE-Core. (From meta-yocto rev: 5d48d41a3f93ca0e7085ce3c0f646b1d0c8d52d1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp')
-rw-r--r--meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py b/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py
index b3db226d7e..57599e19aa 100644
--- a/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py
+++ b/meta-yocto-bsp/lib/oeqa/selftest/cases/systemd_boot.py
@@ -30,7 +30,7 @@ class Systemdboot(OESelftestTestCase):
30 runCmd('rm -f %s' % systemdbootfile) 30 runCmd('rm -f %s' % systemdbootfile)
31 31
32 # Build a genericx86-64/efi systemdboot image 32 # Build a genericx86-64/efi systemdboot image
33 bitbake('mtools-native core-image-minimal') 33 bitbake('mtools-native core-image-minimal wic-tools')
34 34
35 found = os.path.isfile(systemdbootfile) 35 found = os.path.isfile(systemdbootfile)
36 self.assertTrue(found, 'Systemd-Boot file %s not found' % systemdbootfile) 36 self.assertTrue(found, 'Systemd-Boot file %s not found' % systemdbootfile)
@@ -57,8 +57,10 @@ class Systemdboot(OESelftestTestCase):
57 if os.path.isfile(imagebootfile): 57 if os.path.isfile(imagebootfile):
58 runCmd('rm -f %s' % imagebootfile) 58 runCmd('rm -f %s' % imagebootfile)
59 59
60 runCmd('wic cp %s:1/EFI/BOOT/bootx64.efi %s' % (systemdbootimage, 60 sysroot = get_bb_var('RECIPE_SYSROOT_NATIVE', 'wic-tools')
61 imagebootfile)) 61
62 runCmd('wic cp %s:1/EFI/BOOT/bootx64.efi %s -n %s' % (systemdbootimage,
63 imagebootfile, sysroot))
62 64
63 found = os.path.isfile(imagebootfile) 65 found = os.path.isfile(imagebootfile)
64 self.assertTrue(found, 'bootx64.efi file %s was not copied from image' 66 self.assertTrue(found, 'bootx64.efi file %s was not copied from image'