diff options
author | Piotr Łobacz <p.lobacz@welotec.com> | 2023-03-14 15:17:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-17 17:17:42 +0000 |
commit | b9da0488f520969f4ec030199104a647843997e4 (patch) | |
tree | 1a3a48767e8991bb76c2e5de8fe15331f1591fb6 | |
parent | bedf823032e7b785474c7c8b70c36d63c6d37276 (diff) | |
download | poky-b9da0488f520969f4ec030199104a647843997e4.tar.gz |
systemd: fix wrong nobody-group assignment
The generated /etc/group file had a wrong group name for nobody-group
which was nobody with same id as nogroup groupd. This was leading to
duplcate groups, with same ids and different names.
More can be read on this link:
https://bugzilla.yoctoproject.org/show_bug.cgi?id=11766
(From OE-Core rev: d69fccf2e5d108dd7c6059310924588d36a45865)
Signed-off-by: Piotr Łobacz <p.lobacz@welotec.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/systemd/systemd_253.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/systemd/systemd_253.1.bb b/meta/recipes-core/systemd/systemd_253.1.bb index 4a0bb18254..1d4e0e71e2 100644 --- a/meta/recipes-core/systemd/systemd_253.1.bb +++ b/meta/recipes-core/systemd/systemd_253.1.bb | |||
@@ -227,7 +227,7 @@ rootlibdir ?= "${base_libdir}" | |||
227 | rootlibexecdir = "${rootprefix}/lib" | 227 | rootlibexecdir = "${rootprefix}/lib" |
228 | 228 | ||
229 | EXTRA_OEMESON += "-Dnobody-user=nobody \ | 229 | EXTRA_OEMESON += "-Dnobody-user=nobody \ |
230 | -Dnobody-group=nobody \ | 230 | -Dnobody-group=nogroup \ |
231 | -Drootlibdir=${rootlibdir} \ | 231 | -Drootlibdir=${rootlibdir} \ |
232 | -Drootprefix=${rootprefix} \ | 232 | -Drootprefix=${rootprefix} \ |
233 | -Ddefault-locale=C \ | 233 | -Ddefault-locale=C \ |