summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/fitimage.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/fitimage.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/fitimage.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/fitimage.py b/meta/lib/oeqa/selftest/cases/fitimage.py
index 2c3803d5be..2a02c60251 100644
--- a/meta/lib/oeqa/selftest/cases/fitimage.py
+++ b/meta/lib/oeqa/selftest/cases/fitimage.py
@@ -35,6 +35,7 @@ UBOOT_RD_LOADADDRESS = "0x88000000"
35UBOOT_RD_ENTRYPOINT = "0x88000000" 35UBOOT_RD_ENTRYPOINT = "0x88000000"
36UBOOT_LOADADDRESS = "0x80080000" 36UBOOT_LOADADDRESS = "0x80080000"
37UBOOT_ENTRYPOINT = "0x80080000" 37UBOOT_ENTRYPOINT = "0x80080000"
38FIT_DESC = "A model description"
38""" 39"""
39 self.write_config(config) 40 self.write_config(config)
40 41
@@ -59,7 +60,9 @@ UBOOT_ENTRYPOINT = "0x80080000"
59 # The order of fields in the below array is important. Not all the 60 # The order of fields in the below array is important. Not all the
60 # fields are tested, only the key fields that wont vary between 61 # fields are tested, only the key fields that wont vary between
61 # different architectures. 62 # different architectures.
62 its_field_check = ['type = "kernel";', 63 its_field_check = [
64 'description = "A model description";',
65 'type = "kernel";',
63 'load = <0x80080000>;', 66 'load = <0x80080000>;',
64 'entry = <0x80080000>;', 67 'entry = <0x80080000>;',
65 'type = "ramdisk";', 68 'type = "ramdisk";',