diff options
author | Ross Burton <ross.burton@arm.com> | 2024-11-05 19:48:54 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-11-06 12:18:05 +0000 |
commit | 109fe2eade73b81ef43524e48a8bcfe0695b1ce3 (patch) | |
tree | 4d44d79c90e765ca1e623ee6a5895cb7f3c83d59 /meta-selftest | |
parent | f3f838a6d3e7e4129e46babe595ecb0c1ae9e5aa (diff) | |
download | poky-109fe2eade73b81ef43524e48a8bcfe0695b1ce3.tar.gz |
selftest/container: fix IMAGE_FEATURES assignment
Assigning IMAGE_FEATURES="" in local.conf doesn't actually do anything
useful, as bitbake.conf has IMAGE_FEATURES += EXTRA_IMAGE_FEATURES after
the include of local.conf.
In this test case, this results in IMAGE_FEATURES still using
EXTRA_IMAGE_FEATURES, so the image contains the files installed by the
post-install-logging feature.
As the intention here is that container-test-image is as minimal as
possible, move the IMAGE_FEATURES assignment into the image itself so
it actually works, and update the expected file list to remove the
post-install-logging files.
(From OE-Core rev: c65349e1238ddc6634dfa4759c57e6168a355200)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r-- | meta-selftest/recipes-test/container-image/container-test-image.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-selftest/recipes-test/container-image/container-test-image.bb b/meta-selftest/recipes-test/container-image/container-test-image.bb index d5f939c6e9..26b6409d1d 100644 --- a/meta-selftest/recipes-test/container-image/container-test-image.bb +++ b/meta-selftest/recipes-test/container-image/container-test-image.bb | |||
@@ -4,5 +4,6 @@ LICENSE = "MIT" | |||
4 | 4 | ||
5 | IMAGE_FSTYPES = "container" | 5 | IMAGE_FSTYPES = "container" |
6 | IMAGE_LINGUAS = "" | 6 | IMAGE_LINGUAS = "" |
7 | IMAGE_FEATURES = "" | ||
7 | 8 | ||
8 | inherit core-image | 9 | inherit core-image |