summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Bergin <peter@berginkonsult.se>2021-11-26 10:58:07 +0530
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-12-02 16:53:08 +0000
commit8ee284f8b2b7f098bf19b5643697a1887cbe7e1b (patch)
treebcece164889e1d086f81af26cfb5d43c9315ade0
parent46f68b5121327bb105b38de9c65fd26598cf8c3b (diff)
downloadpoky-8ee284f8b2b7f098bf19b5643697a1887cbe7e1b.tar.gz
systemd: add packageconfig for wheel-group
If the distro does not include the group 'wheel' systemd will complain when trying to parse ACL rules for tmpfiles.d. systemd-tmpfiles[273]: Failed to parse ACL "d:group:adm:r-x,d:group:wheel:r-x": Invalid argument. Ignoring Systemd has a configuration parameter to avoid using 'wheel' group in the standard config files for tmpfiles. Add this as a PACKAGECONFIG and enable it by default to keep default. (From OE-Core rev: 1b5648e6aeb9837cb807ce086c26fbfaa16f6f8b) (From OE-Core rev: 88d2c3d807a5f6bdd858de39506762aaca834aa9) Signed-off-by: Peter Bergin <peter@berginkonsult.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 457cc45f51e78a532930d0347de271f24ae0a2ee) Upstream-Status: Backport Signed-off-by: Sana Kazi <Sana.Kazi@kpit.com> Signed-off-by: Sana Kazi <sanakazisk19@gmail.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/systemd/systemd_244.5.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/systemd/systemd_244.5.bb b/meta/recipes-core/systemd/systemd_244.5.bb
index bf33b8d6a1..b6f5a47d63 100644
--- a/meta/recipes-core/systemd/systemd_244.5.bb
+++ b/meta/recipes-core/systemd/systemd_244.5.bb
@@ -96,6 +96,7 @@ PACKAGECONFIG ??= " \
96 timesyncd \ 96 timesyncd \
97 utmp \ 97 utmp \
98 vconsole \ 98 vconsole \
99 wheel-group \
99 xz \ 100 xz \
100" 101"
101 102
@@ -188,6 +189,7 @@ PACKAGECONFIG[sbinmerge] = "-Dsplit-bin=false,-Dsplit-bin=true"
188PACKAGECONFIG[utmp] = "-Dutmp=true,-Dutmp=false" 189PACKAGECONFIG[utmp] = "-Dutmp=true,-Dutmp=false"
189PACKAGECONFIG[valgrind] = "-DVALGRIND=1,,valgrind" 190PACKAGECONFIG[valgrind] = "-DVALGRIND=1,,valgrind"
190PACKAGECONFIG[vconsole] = "-Dvconsole=true,-Dvconsole=false,,${PN}-vconsole-setup" 191PACKAGECONFIG[vconsole] = "-Dvconsole=true,-Dvconsole=false,,${PN}-vconsole-setup"
192PACKAGECONFIG[wheel-group] = "-Dwheel-group=true, -Dwheel-group=false"
191# Verify keymaps on locale change 193# Verify keymaps on locale change
192PACKAGECONFIG[xkbcommon] = "-Dxkbcommon=true,-Dxkbcommon=false,libxkbcommon" 194PACKAGECONFIG[xkbcommon] = "-Dxkbcommon=true,-Dxkbcommon=false,libxkbcommon"
193PACKAGECONFIG[xz] = "-Dxz=true,-Dxz=false,xz" 195PACKAGECONFIG[xz] = "-Dxz=true,-Dxz=false,xz"