diff options
author | Saul Wold <Saul.Wold@windriver.com> | 2022-02-04 09:01:41 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 23:37:27 +0000 |
commit | b02d1984747271372b569c63348d22e20c4e8219 (patch) | |
tree | 92eeb03644ea5c3d57295316b8d6453047df501a /meta/lib | |
parent | 267517adc79cc07fb63d3d5fb10cc956f5b70007 (diff) | |
download | poky-b02d1984747271372b569c63348d22e20c4e8219.tar.gz |
imagefeatures: selftest: Change variable to be more descriptive
This changes a couple of variables to be more representive of
their usage.
(From OE-Core rev: f776a4afc279f71d362d42303a930fdc47f11755)
Signed-off-by: Saul Wold <saul.wold@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/imagefeatures.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index 18f37c6d7d..d36d45c551 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py | |||
@@ -198,8 +198,8 @@ class ImageFeatures(OESelftestTestCase): | |||
198 | image_name = 'core-image-minimal' | 198 | image_name = 'core-image-minimal' |
199 | 199 | ||
200 | all_image_types = set(get_bb_var("IMAGE_TYPES", image_name).split()) | 200 | all_image_types = set(get_bb_var("IMAGE_TYPES", image_name).split()) |
201 | blacklist = set(('container', 'elf', 'f2fs', 'multiubi', 'tar.zst', 'wic.zst')) | 201 | skip_image_types = set(('container', 'elf', 'f2fs', 'multiubi', 'tar.zst', 'wic.zst')) |
202 | img_types = all_image_types - blacklist | 202 | img_types = all_image_types - skip_image_types |
203 | 203 | ||
204 | config = 'IMAGE_FSTYPES += "%s"\n'\ | 204 | config = 'IMAGE_FSTYPES += "%s"\n'\ |
205 | 'MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 2047"\n'\ | 205 | 'MKUBIFS_ARGS ?= "-m 2048 -e 129024 -c 2047"\n'\ |
@@ -245,8 +245,8 @@ VIRTUAL-RUNTIME_base-utils = "packagegroup-core-base-utils" | |||
245 | VIRTUAL-RUNTIME_base-utils-hwclock = "util-linux-hwclock" | 245 | VIRTUAL-RUNTIME_base-utils-hwclock = "util-linux-hwclock" |
246 | VIRTUAL-RUNTIME_base-utils-syslog = "" | 246 | VIRTUAL-RUNTIME_base-utils-syslog = "" |
247 | 247 | ||
248 | # Blacklist busybox | 248 | # Skip busybox |
249 | PNBLACKLIST[busybox] = "Don't build this" | 249 | SKIP_RECIPE[busybox] = "Don't build this" |
250 | """ | 250 | """ |
251 | self.write_config(config) | 251 | self.write_config(config) |
252 | 252 | ||