summaryrefslogtreecommitdiffstats
path: root/conf/template.atom-c3000-debug/local.conf.sample
diff options
context:
space:
mode:
Diffstat (limited to 'conf/template.atom-c3000-debug/local.conf.sample')
-rw-r--r--conf/template.atom-c3000-debug/local.conf.sample36
1 files changed, 27 insertions, 9 deletions
diff --git a/conf/template.atom-c3000-debug/local.conf.sample b/conf/template.atom-c3000-debug/local.conf.sample
index c749b24..1c5fbb2 100644
--- a/conf/template.atom-c3000-debug/local.conf.sample
+++ b/conf/template.atom-c3000-debug/local.conf.sample
@@ -155,6 +155,7 @@ EXTRA_IMAGE_FEATURES = " \
155# - 'image-swab' to perform host system intrusion detection 155# - 'image-swab' to perform host system intrusion detection
156# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink 156# NOTE: if listing mklibs & prelink both, then make sure mklibs is before prelink
157# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended 157# NOTE: mklibs also needs to be explicitly enabled for a given image, see local.conf.extended
158# NOTE: image-prelink is removed by sota.conf.inc
158USER_CLASSES ?= "buildstats image-mklibs image-prelink" 159USER_CLASSES ?= "buildstats image-mklibs image-prelink"
159 160
160# 161#
@@ -241,12 +242,29 @@ CONF_VERSION = "1"
241 242
242SKIP_META_VIRT_SANITY_CHECK = "1" 243SKIP_META_VIRT_SANITY_CHECK = "1"
243 244
244# 245# Various packages dynamically add users and groups to the system at package
245# OSTree integration 246# install time. For programs that do not care what the uid/gid is of the
246# 247# resulting users/groups, the order of the install will determine the final
247 248# uid/gid. This can lead to non-deterministic uid/gid values from one build
248SOTA_MACHINE ?= "${MACHINE}" 249# to another. Use the following settings to specify that all user/group adds
249 250# should be created based on a static passwd/group file.
250DISTRO_FEATURES_append = " sota" 251#
251DISTRO_FEATURES_NATIVE_append = " sota" 252# Note, if you enable or disable the useradd-staticids in a configured system,
252INHERIT += " sota" 253# the TMPDIR may contain incorrect uid/gid values. Clearing the TMPDIR
254# will correct this condition.
255#
256# By default the system looks in the BBPATH for files/passwd and files/group
257# the default can be overriden by spefying USERADD_UID/GID_TABLES.
258#
259USERADDEXTENSION = "useradd-staticids"
260USERADD_UID_TABLES = "files/passwd"
261USERADD_GID_TABLES = "files/group"
262ROOTFS_POSTPROCESS_COMMAND_remove = "systemd_create_users;"
263#
264# In order to prevent generating a system where a dynamicly assigned uid/gid
265# can exist, you should enable the following setting. This will force the
266# system to error out if the user/group name is not defined in the
267# files/passwd or files/group (or specified replacements.)
268# Unfortunately, setting the variable below breaks the build, so do not set it
269# for now
270# USERADD_ERROR_DYNAMIC = "1"