diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/wic.py')
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 8eb77aee2a..ebbb280163 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -372,8 +372,8 @@ class Wic(oeSelfTest): | |||
372 | 372 | ||
373 | wicvars = set(get_bb_var('WICVARS', image).split()) | 373 | wicvars = set(get_bb_var('WICVARS', image).split()) |
374 | # filter out optional variables | 374 | # filter out optional variables |
375 | wicvars = wicvars.difference(('HDDDIR', 'IMAGE_BOOT_FILES', | 375 | wicvars = wicvars.difference(('IMAGE_BOOT_FILES', 'INITRD', |
376 | 'INITRD', 'INITRD_LIVE', 'ISODIR')) | 376 | 'INITRD_LIVE', 'ISODIR')) |
377 | with open(path) as envfile: | 377 | with open(path) as envfile: |
378 | content = dict(line.split("=", 1) for line in envfile) | 378 | content = dict(line.split("=", 1) for line in envfile) |
379 | # test if variables used by wic present in the .env file | 379 | # test if variables used by wic present in the .env file |