summaryrefslogtreecommitdiffstats
path: root/meta-poky/conf
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-11-06 10:55:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-08 11:00:09 +0000
commit832384fdc69bd909183da7572ab8171dc34542c3 (patch)
treec0908369b3ba94c27a6cc3f6d5facf14e266076e /meta-poky/conf
parentbafd53ec565e6e40b0f74bc0d14f2f5a6498c7ce (diff)
downloadpoky-832384fdc69bd909183da7572ab8171dc34542c3.tar.gz
poky-tiny: fix PACKAGE_EXCLUDE
poky-tiny does a PACKAGE_EXCLUDE on shadow-base as the kernel doesn't support multiple users. However it does this by assigning to an override, which makes it impossible for images or machines to extend PACKAGE_EXCLUDE with their own exclusions. (From meta-yocto rev: 5d86975934b46a64b36f60c097bce7a577c1b8b0) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky/conf')
-rw-r--r--meta-poky/conf/distro/poky-tiny.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-poky/conf/distro/poky-tiny.conf b/meta-poky/conf/distro/poky-tiny.conf
index 32c2ec3e1f..24bcbee9bb 100644
--- a/meta-poky/conf/distro/poky-tiny.conf
+++ b/meta-poky/conf/distro/poky-tiny.conf
@@ -125,4 +125,4 @@ PACKAGECONFIG:remove:pn-opkg-utils = "python"
125 125
126# If shadow-base is brought into the image, logins will fail because it 126# If shadow-base is brought into the image, logins will fail because it
127# doesn't have the heuristics to work when CONFIG_MULTIUSER is unset. 127# doesn't have the heuristics to work when CONFIG_MULTIUSER is unset.
128PACKAGE_EXCLUDE:poky-tiny = "shadow-base" 128PACKAGE_EXCLUDE += "shadow-base"