summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r--meta/lib/oeqa/selftest/cases/fitimage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/fitimage.py b/meta/lib/oeqa/selftest/cases/fitimage.py
index fcba28b7b7..9c353b6ed1 100644
--- a/meta/lib/oeqa/selftest/cases/fitimage.py
+++ b/meta/lib/oeqa/selftest/cases/fitimage.py
@@ -513,11 +513,11 @@ class KernelFitImageTests(FitImageTestCase):
513 its_field_check = [ 513 its_field_check = [
514 'description = "%s";' % bb_vars['FIT_DESC'], 514 'description = "%s";' % bb_vars['FIT_DESC'],
515 'description = "Linux kernel";', 515 'description = "Linux kernel";',
516 'data = /incbin/("linux.bin");',
517 'type = "' + str(bb_vars['UBOOT_MKIMAGE_KERNEL_TYPE']) + '";', 516 'type = "' + str(bb_vars['UBOOT_MKIMAGE_KERNEL_TYPE']) + '";',
517 # 'compression = "' + str(bb_vars['FIT_KERNEL_COMP_ALG']) + '";', defined based on files in TMPDIR, not ideal...
518 'data = /incbin/("linux.bin");',
518 'arch = "' + str(bb_vars['UBOOT_ARCH']) + '";', 519 'arch = "' + str(bb_vars['UBOOT_ARCH']) + '";',
519 'os = "linux";', 520 'os = "linux";',
520 # 'compression = "' + str(bb_vars['FIT_KERNEL_COMP_ALG']) + '";', defined based on files in TMPDIR, not ideal...
521 'load = <' + str(bb_vars['UBOOT_LOADADDRESS']) + '>;', 521 'load = <' + str(bb_vars['UBOOT_LOADADDRESS']) + '>;',
522 'entry = <' + str(bb_vars['UBOOT_ENTRYPOINT']) + '>;', 522 'entry = <' + str(bb_vars['UBOOT_ENTRYPOINT']) + '>;',
523 ] 523 ]