diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-16 12:26:05 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-16 23:19:18 +0100 |
| commit | 88c200c75187f4c2bbdcb738c5aeb30b69b25b9b (patch) | |
| tree | 8d9e8fa2293034d801d0ca71fc8ffcad3624b564 /meta/lib/oeqa/selftest/cases/imagefeatures.py | |
| parent | 2962cd877b7629b0be2962505796f5e60c31578e (diff) | |
| download | poky-88c200c75187f4c2bbdcb738c5aeb30b69b25b9b.tar.gz | |
selftest/imagefeatures/overlayfs: Always append to DISTRO_FEATURES
Using += unintentionally removes all other entries from DISTRO_FEATURES
if DISTRO_FEATURES was set by ?= such as by poky.conf. This reduces
sstate reusage on the autobuilder. Fix this to speed up builds.
(From OE-Core rev: 124b82c32c4545bb216a8249954817f692f9795a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/imagefeatures.py')
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/imagefeatures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/imagefeatures.py b/meta/lib/oeqa/selftest/cases/imagefeatures.py index 6b94ace4eb..6d010b3e3a 100644 --- a/meta/lib/oeqa/selftest/cases/imagefeatures.py +++ b/meta/lib/oeqa/selftest/cases/imagefeatures.py | |||
| @@ -235,7 +235,7 @@ USERADD_GID_TABLES += "files/static-group" | |||
| 235 | DISTRO_FEATURES:append = " pam opengl wayland" | 235 | DISTRO_FEATURES:append = " pam opengl wayland" |
| 236 | 236 | ||
| 237 | # Switch to systemd | 237 | # Switch to systemd |
| 238 | DISTRO_FEATURES += "systemd" | 238 | DISTRO_FEATURES:append = " systemd" |
| 239 | VIRTUAL-RUNTIME_init_manager = "systemd" | 239 | VIRTUAL-RUNTIME_init_manager = "systemd" |
| 240 | VIRTUAL-RUNTIME_initscripts = "" | 240 | VIRTUAL-RUNTIME_initscripts = "" |
| 241 | VIRTUAL-RUNTIME_syslog = "" | 241 | VIRTUAL-RUNTIME_syslog = "" |
