diff options
author | Jérémy Rosen <jeremy.rosen@smile.fr> | 2018-06-30 00:25:52 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-07-01 14:31:11 +0200 |
commit | 9d912e619d48a7dfaed29d490bf389603974cfd2 (patch) | |
tree | db6a5274d2f44e0ce8cb667a5ed0c311df112e2c | |
parent | b8dd03de565296698ceaff2aca22867ef365613c (diff) | |
download | buildroot-9d912e619d48a7dfaed29d490bf389603974cfd2.tar.gz buildroot-9d912e619d48a7dfaed29d490bf389603974cfd2.zip |
systemd: fix nogroup
The special 65534 group is named nogroup (not nobody) in buildroot
tell systemd about that
Signed-off-by: Jérémy Rosen <jeremy.rosen@smile.fr>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/systemd/systemd.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk index 0d5e348594..10e11a9277 100644 --- a/package/systemd/systemd.mk +++ b/package/systemd/systemd.mk @@ -43,7 +43,8 @@ SYSTEMD_CONF_OPTS += \ -Dkexec-path=/usr/sbin/kexec \ -Dsulogin-path=/usr/sbin/sulogin \ -Dmount-path=/usr/bin/mount \ - -Dumount-path=/usr/bin/umount + -Dumount-path=/usr/bin/umount \ + -Dnobody-group=nogroup # disable unsupported features for non-glibc toolchains ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y) |