[gnome-continuous-yocto/gnomeostree-3.28-rocko: 5245/8267] wic: selftest: do not assume bzImage kernel image



commit 17fe3eb453a4fda54eb320e3c69a3dbf3f306e87
Author: Maciej Borzecki <maciej borzecki rndity com>
Date:   Tue Mar 21 12:35:04 2017 +0100

    wic: selftest: do not assume bzImage kernel image
    
    Instead of assuming that bzImage is available, query bitbake enviroment
    for KERNEL_IMAGETYPE.
    
    (From OE-Core rev: d3e1d25a06dd4cb3ec80ea63352de24e50552481)
    
    Signed-off-by: Maciej Borzecki <maciej borzecki rndity com>
    Signed-off-by: Ross Burton <ross burton intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 meta/lib/oeqa/selftest/wic.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py
index 224610c..776e44a 100644
--- a/meta/lib/oeqa/selftest/wic.py
+++ b/meta/lib/oeqa/selftest/wic.py
@@ -228,7 +228,8 @@ class Wic(oeSelfTest):
     def test_sdimage_bootpart(self):
         """Test creation of sdimage-bootpart image"""
         cmd = "wic create sdimage-bootpart -e core-image-minimal -o %s" % self.resultdir
-        self.write_config('IMAGE_BOOT_FILES = "bzImage"\n')
+        kimgtype = get_bb_var('KERNEL_IMAGETYPE', 'core-image-minimal')
+        self.write_config('IMAGE_BOOT_FILES = "%s"\n' % kimgtype)
         self.assertEqual(0, runCmd(cmd).status)
         self.assertEqual(1, len(glob(self.resultdir + "sdimage-bootpart-*direct")))
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]