summaryrefslogtreecommitdiffstats
path: root/conf/template.atom-c3000/local.conf.sample
diff options
context:
space:
mode:
Diffstat (limited to 'conf/template.atom-c3000/local.conf.sample')
-rw-r--r--conf/template.atom-c3000/local.conf.sample26
1 files changed, 26 insertions, 0 deletions
diff --git a/conf/template.atom-c3000/local.conf.sample b/conf/template.atom-c3000/local.conf.sample
index 8c24e77..b015f43 100644
--- a/conf/template.atom-c3000/local.conf.sample
+++ b/conf/template.atom-c3000/local.conf.sample
@@ -247,3 +247,29 @@ SOTA_MACHINE ?= "${MACHINE}"
247DISTRO_FEATURES_append = " sota" 247DISTRO_FEATURES_append = " sota"
248DISTRO_FEATURES_NATIVE_append = " sota" 248DISTRO_FEATURES_NATIVE_append = " sota"
249INHERIT += " sota" 249INHERIT += " sota"
250
251# Various packages dynamically add users and groups to the system at package
252# install time. For programs that do not care what the uid/gid is of the
253# resulting users/groups, the order of the install will determine the final
254# uid/gid. This can lead to non-deterministic uid/gid values from one build
255# to another. Use the following settings to specify that all user/group adds
256# should be created based on a static passwd/group file.
257#
258# Note, if you enable or disable the useradd-staticids in a configured system,
259# the TMPDIR may contain incorrect uid/gid values. Clearing the TMPDIR
260# will correct this condition.
261#
262# By default the system looks in the BBPATH for files/passwd and files/group
263# the default can be overriden by spefying USERADD_UID/GID_TABLES.
264#
265USERADDEXTENSION = "useradd-staticids"
266USERADD_UID_TABLES = "files/passwd"
267USERADD_GID_TABLES = "files/group"
268#
269# In order to prevent generating a system where a dynamicly assigned uid/gid
270# can exist, you should enable the following setting. This will force the
271# system to error out if the user/group name is not defined in the
272# files/passwd or files/group (or specified replacements.)
273# Unfortunately, setting the variable below breaks the build, so do not set it
274# for now
275# USERADD_ERROR_DYNAMIC = "1"