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