summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-yocto/conf/local.conf.sample.extended15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-yocto/conf/local.conf.sample.extended b/meta-yocto/conf/local.conf.sample.extended
index 9717439b4a..cff79e4628 100644
--- a/meta-yocto/conf/local.conf.sample.extended
+++ b/meta-yocto/conf/local.conf.sample.extended
@@ -218,3 +218,18 @@
218# Use the following line to enable the security compiler and linker flags to your build 218# Use the following line to enable the security compiler and linker flags to your build
219#require conf/distro/include/security_flags.inc 219#require conf/distro/include/security_flags.inc
220 220
221# Image level user/group configuration.
222# Inherit extrausers to make the setting of EXTRA_USERS_PARAMS effective.
223#INHERIT += "extrausers"
224# User / group settings
225# The settings are sperated by the ; character.
226# Each setting is actually a command. The supported commands are useradd,
227# groupadd, userdel, groupdel, usermod and groupmod.
228#EXTRA_USERS_PARAMS = "\
229#useradd -p '' tester; \
230#groupadd developers; \
231#userdel nobody; \
232#groupdel -g video; \
233#groupmod -g 1020 developers; \
234#usermod -s /bin/sh tester; \
235#"