diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-19 10:44:55 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-12-20 07:47:00 +0000 |
commit | 2ad6a0be02aca682cbfb68e84dc60fcbaa95b0ce (patch) | |
tree | bfcae716845aa041450907a63ff3a1ec401aef0d /meta | |
parent | 98b63ecc4358a11c6840bad90c86846b8b9a3a76 (diff) | |
download | poky-2ad6a0be02aca682cbfb68e84dc60fcbaa95b0ce.tar.gz |
oeqa/selftest/overlayfs: Don't overwrite DISTRO_FEATURES
Whilst debugging an autobuilder failure, I wondered why it was rebuilding qemu-system-native
instead of reusing from sstate. The reason was it was overwriting DISTRO_FEATURES,
in this case removing opengl which caused much to rebuild.
The test doesn't need that so don't do it.
(From OE-Core rev: fdcc011608fd9558a081d0ace3eaf7192d9fcaef)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/overlayfs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/overlayfs.py b/meta/lib/oeqa/selftest/cases/overlayfs.py index 4031ded0fe..19ee228fff 100644 --- a/meta/lib/oeqa/selftest/cases/overlayfs.py +++ b/meta/lib/oeqa/selftest/cases/overlayfs.py | |||
@@ -79,7 +79,7 @@ DISTRO_FEATURES:append = " systemd overlayfs usrmerge" | |||
79 | 79 | ||
80 | config = """ | 80 | config = """ |
81 | IMAGE_INSTALL:append = " overlayfs-user" | 81 | IMAGE_INSTALL:append = " overlayfs-user" |
82 | DISTRO_FEATURES += "systemd overlayfs usrmerge" | 82 | DISTRO_FEATURES:append = "systemd overlayfs usrmerge" |
83 | OVERLAYFS_QA_SKIP[mnt-overlay] = "mount-configured" | 83 | OVERLAYFS_QA_SKIP[mnt-overlay] = "mount-configured" |
84 | """ | 84 | """ |
85 | 85 | ||