blob: 3b5600e5507c825fedce9e4d58b75f78874969de [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002IMAGE_CLASSES ??= ""
3
4# rootfs bootstrap install
5# warning - image-container resets this
6ROOTFS_BOOTSTRAP_INSTALL = "run-postinsts"
7
8# Handle inherits of any of the image classes we need
9IMGCLASSES = "rootfs_${IMAGE_PKGTYPE} image_types ${IMAGE_CLASSES}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010# Only Linux SDKs support populate_sdk_ext, fall back to populate_sdk_base
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050011# in the non-Linux SDK_OS case, such as mingw32
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012IMGCLASSES += "${@['populate_sdk_base', 'populate_sdk_ext']['linux' in d.getVar("SDK_OS")]}"
13IMGCLASSES += "${@bb.utils.contains_any('IMAGE_FSTYPES', 'live iso hddimg', 'image-live', '', d)}"
14IMGCLASSES += "${@bb.utils.contains('IMAGE_FSTYPES', 'container', 'image-container', '', d)}"
15IMGCLASSES += "image_types_wic"
16IMGCLASSES += "rootfs-postcommands"
17IMGCLASSES += "image-postinst-intercepts"
18inherit ${IMGCLASSES}
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
20TOOLCHAIN_TARGET_TASK += "${PACKAGE_INSTALL}"
21TOOLCHAIN_TARGET_TASK_ATTEMPTONLY += "${PACKAGE_INSTALL_ATTEMPTONLY}"
22POPULATE_SDK_POST_TARGET_COMMAND += "rootfs_sysroot_relativelinks; "
23
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024LICENSE ?= "MIT"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025PACKAGES = ""
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026DEPENDS += "${@' '.join(["%s-qemuwrapper-cross" % m for m in d.getVar("MULTILIB_VARIANTS").split()])} qemuwrapper-cross depmodwrapper-cross cross-localedef-native"
Brad Bishop19323692019-04-05 15:28:33 -040027RDEPENDS += "${PACKAGE_INSTALL} ${LINGUAS_INSTALL} ${IMAGE_INSTALL_DEBUGFS}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028RRECOMMENDS += "${PACKAGE_INSTALL_ATTEMPTONLY}"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080029PATH_prepend = "${@":".join(all_multilib_tune_values(d, 'STAGING_BINDIR_CROSS').split())}:"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030
31INHIBIT_DEFAULT_DEPS = "1"
32
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033# IMAGE_FEATURES may contain any available package group
34IMAGE_FEATURES ?= ""
35IMAGE_FEATURES[type] = "list"
Brad Bishopc342db32019-05-15 21:57:59 -040036IMAGE_FEATURES[validitems] += "debug-tweaks read-only-rootfs stateless-rootfs empty-root-password allow-empty-password allow-root-login post-install-logging"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037
38# Generate companion debugfs?
39IMAGE_GEN_DEBUGFS ?= "0"
40
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080041# These pacackages will be installed as additional into debug rootfs
42IMAGE_INSTALL_DEBUGFS ?= ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050044# These packages will be removed from a read-only rootfs after all other
45# packages have been installed
Brad Bishopd7bf8c12018-02-25 22:55:05 -050046ROOTFS_RO_UNNEEDED ??= "update-rc.d base-passwd shadow ${VIRTUAL-RUNTIME_update-alternatives} ${ROOTFS_BOOTSTRAP_INSTALL}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050047
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048# packages to install from features
49FEATURE_INSTALL = "${@' '.join(oe.packagegroup.required_packages(oe.data.typed_value('IMAGE_FEATURES', d), d))}"
50FEATURE_INSTALL[vardepvalue] = "${FEATURE_INSTALL}"
51FEATURE_INSTALL_OPTIONAL = "${@' '.join(oe.packagegroup.optional_packages(oe.data.typed_value('IMAGE_FEATURES', d), d))}"
52FEATURE_INSTALL_OPTIONAL[vardepvalue] = "${FEATURE_INSTALL_OPTIONAL}"
53
54# Define some very basic feature package groups
55FEATURE_PACKAGES_package-management = "${ROOTFS_PKGMANAGE}"
56SPLASH ?= "psplash"
57FEATURE_PACKAGES_splash = "${SPLASH}"
58
59IMAGE_INSTALL_COMPLEMENTARY = '${@complementary_globs("IMAGE_FEATURES", d)}'
60
61def check_image_features(d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050062 valid_features = (d.getVarFlag('IMAGE_FEATURES', 'validitems') or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063 valid_features += d.getVarFlags('COMPLEMENTARY_GLOB').keys()
64 for var in d:
Andrew Geissler82c905d2020-04-13 13:39:40 -050065 if var.startswith("FEATURE_PACKAGES_"):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050066 valid_features.append(var[17:])
67 valid_features.sort()
68
69 features = set(oe.data.typed_value('IMAGE_FEATURES', d))
70 for feature in features:
71 if feature not in valid_features:
72 if bb.utils.contains('EXTRA_IMAGE_FEATURES', feature, True, False, d):
73 raise bb.parse.SkipRecipe("'%s' in IMAGE_FEATURES (added via EXTRA_IMAGE_FEATURES) is not a valid image feature. Valid features: %s" % (feature, ' '.join(valid_features)))
74 else:
75 raise bb.parse.SkipRecipe("'%s' in IMAGE_FEATURES is not a valid image feature. Valid features: %s" % (feature, ' '.join(valid_features)))
76
77IMAGE_INSTALL ?= ""
78IMAGE_INSTALL[type] = "list"
79export PACKAGE_INSTALL ?= "${IMAGE_INSTALL} ${ROOTFS_BOOTSTRAP_INSTALL} ${FEATURE_INSTALL}"
80PACKAGE_INSTALL_ATTEMPTONLY ?= "${FEATURE_INSTALL_OPTIONAL}"
81
Patrick Williamsc0f7c042017-02-23 20:41:17 -060082IMGDEPLOYDIR = "${WORKDIR}/deploy-${PN}-image-complete"
83
Patrick Williamsc124f4f2015-09-15 14:41:29 -050084# Images are generally built explicitly, do not need to be part of world.
85EXCLUDE_FROM_WORLD = "1"
86
87USE_DEVFS ?= "1"
88USE_DEPMOD ?= "1"
89
90PID = "${@os.getpid()}"
91
92PACKAGE_ARCH = "${MACHINE_ARCH}"
93
94LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050095LDCONFIGDEPEND_libc-musl = ""
96
97# This is needed to have depmod data in PKGDATA_DIR,
98# but if you're building small initramfs image
99# e.g. to include it in your kernel, you probably
100# don't want this dependency, which is causing dependency loop
101KERNELDEPMODDEPEND ?= "virtual/kernel:do_packagedata"
102
103do_rootfs[depends] += " \
104 makedevs-native:do_populate_sysroot virtual/fakeroot-native:do_populate_sysroot ${LDCONFIGDEPEND} \
105 virtual/update-alternatives-native:do_populate_sysroot update-rc.d-native:do_populate_sysroot \
106 ${KERNELDEPMODDEPEND} \
107"
108do_rootfs[recrdeptask] += "do_packagedata"
109
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500110def rootfs_command_variables(d):
111 return ['ROOTFS_POSTPROCESS_COMMAND','ROOTFS_PREPROCESS_COMMAND','ROOTFS_POSTINSTALL_COMMAND','ROOTFS_POSTUNINSTALL_COMMAND','OPKG_PREPROCESS_COMMANDS','OPKG_POSTPROCESS_COMMANDS','IMAGE_POSTPROCESS_COMMAND',
112 'IMAGE_PREPROCESS_COMMAND','RPM_PREPROCESS_COMMANDS','RPM_POSTPROCESS_COMMANDS','DEB_PREPROCESS_COMMANDS','DEB_POSTPROCESS_COMMANDS']
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500113
114python () {
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500115 variables = rootfs_command_variables(d) + sdk_command_variables(d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500116 for var in variables:
117 if d.getVar(var, False):
118 d.setVarFlag(var, 'func', '1')
119}
120
121def rootfs_variables(d):
122 from oe.rootfs import variable_depends
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600123 variables = ['IMAGE_DEVICE_TABLE','IMAGE_DEVICE_TABLES','BUILD_IMAGES_FROM_FEEDS','IMAGE_TYPES_MASKED','IMAGE_ROOTFS_ALIGNMENT','IMAGE_OVERHEAD_FACTOR','IMAGE_ROOTFS_SIZE','IMAGE_ROOTFS_EXTRA_SPACE',
Brad Bishop64c979e2019-11-04 13:55:29 -0500124 'IMAGE_ROOTFS_MAXSIZE','IMAGE_NAME','IMAGE_LINK_NAME','IMAGE_MANIFEST','DEPLOY_DIR_IMAGE','IMAGE_FSTYPES','IMAGE_INSTALL_COMPLEMENTARY','IMAGE_LINGUAS', 'IMAGE_LINGUAS_COMPLEMENTARY',
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500125 'MULTILIBRE_ALLOW_REP','MULTILIB_TEMP_ROOTFS','MULTILIB_VARIANTS','MULTILIBS','ALL_MULTILIB_PACKAGE_ARCHS','MULTILIB_GLOBAL_VARIANTS','BAD_RECOMMENDATIONS','NO_RECOMMENDATIONS',
126 'PACKAGE_ARCHS','PACKAGE_CLASSES','TARGET_VENDOR','TARGET_ARCH','TARGET_OS','OVERRIDES','BBEXTENDVARIANT','FEED_DEPLOYDIR_BASE_URI','INTERCEPT_DIR','USE_DEVFS',
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800127 'CONVERSIONTYPES', 'IMAGE_GEN_DEBUGFS', 'ROOTFS_RO_UNNEEDED', 'IMGDEPLOYDIR', 'PACKAGE_EXCLUDE_COMPLEMENTARY', 'REPRODUCIBLE_TIMESTAMP_ROOTFS', 'IMAGE_INSTALL_DEBUGFS']
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500128 variables.extend(rootfs_command_variables(d))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500129 variables.extend(variable_depends(d))
130 return " ".join(variables)
131
132do_rootfs[vardeps] += "${@rootfs_variables(d)}"
133
134do_build[depends] += "virtual/kernel:do_deploy"
135
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500136
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500137python () {
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500138 def extraimage_getdepends(task):
139 deps = ""
140 for dep in (d.getVar('EXTRA_IMAGEDEPENDS') or "").split():
141 deps += " %s:%s" % (dep, task)
142 return deps
143
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500144 d.appendVarFlag('do_image_complete', 'depends', extraimage_getdepends('do_populate_sysroot'))
145
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500146 deps = " " + imagetypes_getdepends(d)
147 d.appendVarFlag('do_rootfs', 'depends', deps)
148
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500149 #process IMAGE_FEATURES, we must do this before runtime_mapping_rename
150 #Check for replaces image features
151 features = set(oe.data.typed_value('IMAGE_FEATURES', d))
152 remain_features = features.copy()
153 for feature in features:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500154 replaces = set((d.getVar("IMAGE_FEATURES_REPLACES_%s" % feature) or "").split())
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500155 remain_features -= replaces
156
157 #Check for conflict image features
158 for feature in remain_features:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500159 conflicts = set((d.getVar("IMAGE_FEATURES_CONFLICTS_%s" % feature) or "").split())
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500160 temp = conflicts & remain_features
161 if temp:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500162 bb.fatal("%s contains conflicting IMAGE_FEATURES %s %s" % (d.getVar('PN'), feature, ' '.join(list(temp))))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500163
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600164 d.setVar('IMAGE_FEATURES', ' '.join(sorted(list(remain_features))))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500165
166 check_image_features(d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500167}
168
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500169IMAGE_POSTPROCESS_COMMAND ?= ""
170
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500171# some default locales
172IMAGE_LINGUAS ?= "de-de fr-fr en-gb"
173
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500174LINGUAS_INSTALL ?= "${@" ".join(map(lambda s: "locale-base-%s" % s, d.getVar('IMAGE_LINGUAS').split()))}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500175
176# Prefer image, but use the fallback files for lookups if the image ones
177# aren't yet available.
178PSEUDO_PASSWD = "${IMAGE_ROOTFS}:${STAGING_DIR_NATIVE}"
179
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500180PACKAGE_EXCLUDE ??= ""
181PACKAGE_EXCLUDE[type] = "list"
182
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500183fakeroot python do_rootfs () {
184 from oe.rootfs import create_rootfs
185 from oe.manifest import create_manifest
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500186 import logging
187
188 logger = d.getVar('BB_TASK_LOGGER', False)
189 if logger:
190 logcatcher = bb.utils.LogCatcher()
191 logger.addHandler(logcatcher)
192 else:
193 logcatcher = None
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500194
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600195 # NOTE: if you add, remove or significantly refactor the stages of this
196 # process then you should recalculate the weightings here. This is quite
197 # easy to do - just change the MultiStageProgressReporter line temporarily
198 # to pass debug=True as the last parameter and you'll get a printout of
199 # the weightings as well as a map to the lines where next_stage() was
200 # called. Of course this isn't critical, but it helps to keep the progress
201 # reporting accurate.
202 stage_weights = [1, 203, 354, 186, 65, 4228, 1, 353, 49, 330, 382, 23, 1]
203 progress_reporter = bb.progress.MultiStageProgressReporter(d, stage_weights)
204 progress_reporter.next_stage()
205
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500206 # Handle package exclusions
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500207 excl_pkgs = d.getVar("PACKAGE_EXCLUDE").split()
208 inst_pkgs = d.getVar("PACKAGE_INSTALL").split()
209 inst_attempt_pkgs = d.getVar("PACKAGE_INSTALL_ATTEMPTONLY").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500210
211 d.setVar('PACKAGE_INSTALL_ORIG', ' '.join(inst_pkgs))
212 d.setVar('PACKAGE_INSTALL_ATTEMPTONLY', ' '.join(inst_attempt_pkgs))
213
214 for pkg in excl_pkgs:
215 if pkg in inst_pkgs:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500216 bb.warn("Package %s, set to be excluded, is in %s PACKAGE_INSTALL (%s). It will be removed from the list." % (pkg, d.getVar('PN'), inst_pkgs))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500217 inst_pkgs.remove(pkg)
218
219 if pkg in inst_attempt_pkgs:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500220 bb.warn("Package %s, set to be excluded, is in %s PACKAGE_INSTALL_ATTEMPTONLY (%s). It will be removed from the list." % (pkg, d.getVar('PN'), inst_pkgs))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500221 inst_attempt_pkgs.remove(pkg)
222
223 d.setVar("PACKAGE_INSTALL", ' '.join(inst_pkgs))
224 d.setVar("PACKAGE_INSTALL_ATTEMPTONLY", ' '.join(inst_attempt_pkgs))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500225
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500226 # Ensure we handle package name remapping
227 # We have to delay the runtime_mapping_rename until just before rootfs runs
228 # otherwise, the multilib renaming could step in and squash any fixups that
229 # may have occurred.
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500230 pn = d.getVar('PN')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500231 runtime_mapping_rename("PACKAGE_INSTALL", pn, d)
232 runtime_mapping_rename("PACKAGE_INSTALL_ATTEMPTONLY", pn, d)
233 runtime_mapping_rename("BAD_RECOMMENDATIONS", pn, d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500234
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500235 # Generate the initial manifest
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500236 create_manifest(d)
237
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600238 progress_reporter.next_stage()
239
240 # generate rootfs
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500241 d.setVarFlag('REPRODUCIBLE_TIMESTAMP_ROOTFS', 'export', '1')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500242 create_rootfs(d, progress_reporter=progress_reporter, logcatcher=logcatcher)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600243
244 progress_reporter.finish()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500245}
246do_rootfs[dirs] = "${TOPDIR}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600247do_rootfs[cleandirs] += "${S} ${IMGDEPLOYDIR}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500248do_rootfs[umask] = "022"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800249do_rootfs[file-checksums] += "${POSTINST_INTERCEPT_CHECKSUMS}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500250addtask rootfs after do_prepare_recipe_sysroot
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500251
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500252fakeroot python do_image () {
253 from oe.utils import execute_pre_post_process
254
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500255 d.setVarFlag('REPRODUCIBLE_TIMESTAMP_ROOTFS', 'export', '1')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500256 pre_process_cmds = d.getVar("IMAGE_PREPROCESS_COMMAND")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500257
258 execute_pre_post_process(d, pre_process_cmds)
259}
260do_image[dirs] = "${TOPDIR}"
261do_image[umask] = "022"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500262addtask do_image after do_rootfs
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500263
264fakeroot python do_image_complete () {
265 from oe.utils import execute_pre_post_process
266
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500267 post_process_cmds = d.getVar("IMAGE_POSTPROCESS_COMMAND")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500268
269 execute_pre_post_process(d, post_process_cmds)
270}
271do_image_complete[dirs] = "${TOPDIR}"
272do_image_complete[umask] = "022"
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600273SSTATETASKS += "do_image_complete"
274SSTATE_SKIP_CREATION_task-image-complete = '1'
275do_image_complete[sstate-inputdirs] = "${IMGDEPLOYDIR}"
276do_image_complete[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400277do_image_complete[stamp-extra-info] = "${MACHINE_ARCH}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500278addtask do_image_complete after do_image before do_build
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500279python do_image_complete_setscene () {
280 sstate_setscene(d)
281}
282addtask do_image_complete_setscene
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500283
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600284# Add image-level QA/sanity checks to IMAGE_QA_COMMANDS
285#
286# IMAGE_QA_COMMANDS += " \
287# image_check_everything_ok \
288# "
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500289# This task runs all functions in IMAGE_QA_COMMANDS after the rootfs
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600290# construction has completed in order to validate the resulting image.
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500291#
292# The functions should use ${IMAGE_ROOTFS} to find the unpacked rootfs
293# directory, which if QA passes will be the basis for the images.
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600294fakeroot python do_image_qa () {
295 from oe.utils import ImageQAFailed
296
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500297 qa_cmds = (d.getVar('IMAGE_QA_COMMANDS') or '').split()
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600298 qamsg = ""
299
300 for cmd in qa_cmds:
301 try:
302 bb.build.exec_func(cmd, d)
303 except oe.utils.ImageQAFailed as e:
304 qamsg = qamsg + '\tImage QA function %s failed: %s\n' % (e.name, e.description)
Brad Bishop08902b02019-08-20 09:16:51 -0400305 except Exception as e:
306 qamsg = qamsg + '\tImage QA function %s failed\n' % cmd
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600307
308 if qamsg:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500309 imgname = d.getVar('IMAGE_NAME')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600310 bb.fatal("QA errors found whilst validating image: %s\n%s" % (imgname, qamsg))
311}
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500312addtask do_image_qa after do_rootfs before do_image
313
314SSTATETASKS += "do_image_qa"
315SSTATE_SKIP_CREATION_task-image-qa = '1'
316do_image_qa[sstate-inputdirs] = ""
317do_image_qa[sstate-outputdirs] = ""
318python do_image_qa_setscene () {
319 sstate_setscene(d)
320}
321addtask do_image_qa_setscene
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600322
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500323def setup_debugfs_variables(d):
324 d.appendVar('IMAGE_ROOTFS', '-dbg')
Brad Bishop96ff1982019-08-19 13:50:42 -0400325 if d.getVar('IMAGE_LINK_NAME'):
326 d.appendVar('IMAGE_LINK_NAME', '-dbg')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500327 d.appendVar('IMAGE_NAME','-dbg')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600328 d.setVar('IMAGE_BUILDING_DEBUGFS', 'true')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500329 debugfs_image_fstypes = d.getVar('IMAGE_FSTYPES_DEBUGFS')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500330 if debugfs_image_fstypes:
331 d.setVar('IMAGE_FSTYPES', debugfs_image_fstypes)
332
333python setup_debugfs () {
334 setup_debugfs_variables(d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500335}
336
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500337python () {
338 vardeps = set()
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600339 # We allow CONVERSIONTYPES to have duplicates. That avoids breaking
340 # derived distros when OE-core or some other layer independently adds
341 # the same type. There is still only one command for each type, but
342 # presumably the commands will do the same when the type is the same,
343 # even when added in different places.
344 #
345 # Without de-duplication, gen_conversion_cmds() below
346 # would create the same compression command multiple times.
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500347 ctypes = set(d.getVar('CONVERSIONTYPES').split())
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600348 old_overrides = d.getVar('OVERRIDES', False)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500349
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500350 def _image_base_type(type):
351 basetype = type
352 for ctype in ctypes:
353 if type.endswith("." + ctype):
354 basetype = type[:-len("." + ctype)]
355 break
356
357 if basetype != type:
358 # New base type itself might be generated by a conversion command.
359 basetype = _image_base_type(basetype)
360
361 return basetype
362
363 basetypes = {}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500364 alltypes = d.getVar('IMAGE_FSTYPES').split()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500365 typedeps = {}
366
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500367 if d.getVar('IMAGE_GEN_DEBUGFS') == "1":
368 debugfs_fstypes = d.getVar('IMAGE_FSTYPES_DEBUGFS').split()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500369 for t in debugfs_fstypes:
370 alltypes.append("debugfs_" + t)
371
372 def _add_type(t):
373 baset = _image_base_type(t)
374 input_t = t
375 if baset not in basetypes:
376 basetypes[baset]= []
377 if t not in basetypes[baset]:
378 basetypes[baset].append(t)
379 debug = ""
380 if t.startswith("debugfs_"):
381 t = t[8:]
382 debug = "debugfs_"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500383 deps = (d.getVar('IMAGE_TYPEDEP_' + t) or "").split()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500384 vardeps.add('IMAGE_TYPEDEP_' + t)
385 if baset not in typedeps:
386 typedeps[baset] = set()
387 deps = [debug + dep for dep in deps]
388 for dep in deps:
389 if dep not in alltypes:
390 alltypes.append(dep)
391 _add_type(dep)
392 basedep = _image_base_type(dep)
393 typedeps[baset].add(basedep)
394
395 if baset != input_t:
396 _add_type(baset)
397
398 for t in alltypes[:]:
399 _add_type(t)
400
401 d.appendVarFlag('do_image', 'vardeps', ' '.join(vardeps))
402
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500403 maskedtypes = (d.getVar('IMAGE_TYPES_MASKED') or "").split()
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600404 maskedtypes = [dbg + t for t in maskedtypes for dbg in ("", "debugfs_")]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500405
406 for t in basetypes:
407 vardeps = set()
408 cmds = []
409 subimages = []
410 realt = t
411
412 if t in maskedtypes:
413 continue
414
415 localdata = bb.data.createCopy(d)
416 debug = ""
417 if t.startswith("debugfs_"):
418 setup_debugfs_variables(localdata)
419 debug = "setup_debugfs "
420 realt = t[8:]
421 localdata.setVar('OVERRIDES', '%s:%s' % (realt, old_overrides))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500422 localdata.setVar('type', realt)
423 # Delete DATETIME so we don't expand any references to it now
424 # This means the task's hash can be stable rather than having hardcoded
425 # date/time values. It will get expanded at execution time.
426 # Similarly TMPDIR since otherwise we see QA stamp comparision problems
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500427 # Expand PV else it can trigger get_srcrev which can fail due to these variables being unset
428 localdata.setVar('PV', d.getVar('PV'))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500429 localdata.delVar('DATETIME')
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500430 localdata.delVar('DATE')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500431 localdata.delVar('TMPDIR')
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500432 vardepsexclude = (d.getVarFlag('IMAGE_CMD_' + realt, 'vardepsexclude', True) or '').split()
433 for dep in vardepsexclude:
434 localdata.delVar(dep)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500435
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500436 image_cmd = localdata.getVar("IMAGE_CMD")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500437 vardeps.add('IMAGE_CMD_' + realt)
438 if image_cmd:
439 cmds.append("\t" + image_cmd)
440 else:
441 bb.fatal("No IMAGE_CMD defined for IMAGE_FSTYPES entry '%s' - possibly invalid type name or missing support class" % t)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600442 cmds.append(localdata.expand("\tcd ${IMGDEPLOYDIR}"))
443
444 # Since a copy of IMAGE_CMD_xxx will be inlined within do_image_xxx,
445 # prevent a redundant copy of IMAGE_CMD_xxx being emitted as a function.
446 d.delVarFlag('IMAGE_CMD_' + realt, 'func')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500447
448 rm_tmp_images = set()
449 def gen_conversion_cmds(bt):
Gerson Fernando Budke3c4c45d2017-09-19 14:15:36 -0300450 for ctype in sorted(ctypes):
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500451 if bt.endswith("." + ctype):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500452 type = bt[0:-len(ctype) - 1]
453 if type.startswith("debugfs_"):
454 type = type[8:]
455 # Create input image first.
456 gen_conversion_cmds(type)
457 localdata.setVar('type', type)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500458 cmd = "\t" + (localdata.getVar("CONVERSION_CMD_" + ctype) or localdata.getVar("COMPRESS_CMD_" + ctype))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600459 if cmd not in cmds:
460 cmds.append(cmd)
461 vardeps.add('CONVERSION_CMD_' + ctype)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500462 vardeps.add('COMPRESS_CMD_' + ctype)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600463 subimage = type + "." + ctype
464 if subimage not in subimages:
465 subimages.append(subimage)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500466 if type not in alltypes:
467 rm_tmp_images.add(localdata.expand("${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}"))
468
469 for bt in basetypes[t]:
470 gen_conversion_cmds(bt)
471
472 localdata.setVar('type', realt)
473 if t not in alltypes:
474 rm_tmp_images.add(localdata.expand("${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}"))
475 else:
476 subimages.append(realt)
477
478 # Clean up after applying all conversion commands. Some of them might
479 # use the same input, therefore we cannot delete sooner without applying
480 # some complex dependency analysis.
Brad Bishop37a0e4d2017-12-04 01:01:44 -0500481 for image in sorted(rm_tmp_images):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500482 cmds.append("\trm " + image)
483
484 after = 'do_image'
485 for dep in typedeps[t]:
486 after += ' do_image_%s' % dep.replace("-", "_").replace(".", "_")
487
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500488 task = "do_image_%s" % t.replace("-", "_").replace(".", "_")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500489
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500490 d.setVar(task, '\n'.join(cmds))
491 d.setVarFlag(task, 'func', '1')
492 d.setVarFlag(task, 'fakeroot', '1')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500493
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500494 d.appendVarFlag(task, 'prefuncs', ' ' + debug + ' set_image_size')
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300495 d.prependVarFlag(task, 'postfuncs', 'create_symlinks ')
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500496 d.appendVarFlag(task, 'subimages', ' ' + ' '.join(subimages))
497 d.appendVarFlag(task, 'vardeps', ' ' + ' '.join(vardeps))
Brad Bishop19323692019-04-05 15:28:33 -0400498 d.appendVarFlag(task, 'vardepsexclude', ' DATETIME DATE ' + ' '.join(vardepsexclude))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500499
500 bb.debug(2, "Adding task %s before %s, after %s" % (task, 'do_image_complete', after))
501 bb.build.addtask(task, 'do_image_complete', after, d)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500502}
503
504#
505# Compute the rootfs size
506#
507def get_rootfs_size(d):
508 import subprocess
509
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500510 rootfs_alignment = int(d.getVar('IMAGE_ROOTFS_ALIGNMENT'))
511 overhead_factor = float(d.getVar('IMAGE_OVERHEAD_FACTOR'))
512 rootfs_req_size = int(d.getVar('IMAGE_ROOTFS_SIZE'))
513 rootfs_extra_space = eval(d.getVar('IMAGE_ROOTFS_EXTRA_SPACE'))
514 rootfs_maxsize = d.getVar('IMAGE_ROOTFS_MAXSIZE')
515 image_fstypes = d.getVar('IMAGE_FSTYPES') or ''
516 initramfs_fstypes = d.getVar('INITRAMFS_FSTYPES') or ''
517 initramfs_maxsize = d.getVar('INITRAMFS_MAXSIZE')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500518
519 output = subprocess.check_output(['du', '-ks',
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500520 d.getVar('IMAGE_ROOTFS')])
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500521 size_kb = int(output.split()[0])
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500522
Brad Bishop316dfdd2018-06-25 12:45:53 -0400523 base_size = size_kb * overhead_factor
524 bb.debug(1, '%f = %d * %f' % (base_size, size_kb, overhead_factor))
525 base_size2 = max(base_size, rootfs_req_size) + rootfs_extra_space
Brad Bishop79641f22019-09-10 07:20:22 -0400526 bb.debug(1, '%f = max(%f, %d)[%f] + %d' % (base_size2, base_size, rootfs_req_size, max(base_size, rootfs_req_size), rootfs_extra_space))
Brad Bishop316dfdd2018-06-25 12:45:53 -0400527
528 base_size = base_size2
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500529 if base_size != int(base_size):
530 base_size = int(base_size + 1)
531 else:
532 base_size = int(base_size)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400533 bb.debug(1, '%f = int(%f)' % (base_size, base_size2))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500534
Brad Bishop316dfdd2018-06-25 12:45:53 -0400535 base_size_saved = base_size
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500536 base_size += rootfs_alignment - 1
537 base_size -= base_size % rootfs_alignment
Brad Bishop316dfdd2018-06-25 12:45:53 -0400538 bb.debug(1, '%d = aligned(%d)' % (base_size, base_size_saved))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500539
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600540 # Do not check image size of the debugfs image. This is not supposed
541 # to be deployed, etc. so it doesn't make sense to limit the size
542 # of the debug.
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500543 if (d.getVar('IMAGE_BUILDING_DEBUGFS') or "") == "true":
Brad Bishop316dfdd2018-06-25 12:45:53 -0400544 bb.debug(1, 'returning debugfs size %d' % (base_size))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600545 return base_size
546
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500547 # Check the rootfs size against IMAGE_ROOTFS_MAXSIZE (if set)
548 if rootfs_maxsize:
549 rootfs_maxsize_int = int(rootfs_maxsize)
550 if base_size > rootfs_maxsize_int:
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500551 bb.fatal("The rootfs size %d(K) exceeds IMAGE_ROOTFS_MAXSIZE: %d(K)" % \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500552 (base_size, rootfs_maxsize_int))
553
554 # Check the initramfs size against INITRAMFS_MAXSIZE (if set)
555 if image_fstypes == initramfs_fstypes != '' and initramfs_maxsize:
556 initramfs_maxsize_int = int(initramfs_maxsize)
557 if base_size > initramfs_maxsize_int:
Andrew Geisslerb7d28612020-07-24 16:15:54 -0500558 bb.error("The initramfs size %d(K) exceeds INITRAMFS_MAXSIZE: %d(K)" % \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500559 (base_size, initramfs_maxsize_int))
560 bb.error("You can set INITRAMFS_MAXSIZE a larger value. Usually, it should")
561 bb.fatal("be less than 1/2 of ram size, or you may fail to boot it.\n")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400562
563 bb.debug(1, 'returning %d' % (base_size))
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500564 return base_size
565
566python set_image_size () {
567 rootfs_size = get_rootfs_size(d)
568 d.setVar('ROOTFS_SIZE', str(rootfs_size))
569 d.setVarFlag('ROOTFS_SIZE', 'export', '1')
570}
571
572#
573# Create symlinks to the newly created image
574#
575python create_symlinks() {
576
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500577 deploy_dir = d.getVar('IMGDEPLOYDIR')
578 img_name = d.getVar('IMAGE_NAME')
579 link_name = d.getVar('IMAGE_LINK_NAME')
580 manifest_name = d.getVar('IMAGE_MANIFEST')
581 taskname = d.getVar("BB_CURRENTTASK")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500582 subimages = (d.getVarFlag("do_" + taskname, 'subimages', False) or "").split()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500583 imgsuffix = d.getVarFlag("do_" + taskname, 'imgsuffix') or d.expand("${IMAGE_NAME_SUFFIX}.")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500584
585 if not link_name:
586 return
587 for type in subimages:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600588 dst = os.path.join(deploy_dir, link_name + "." + type)
589 src = img_name + imgsuffix + type
590 if os.path.exists(os.path.join(deploy_dir, src)):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500591 bb.note("Creating symlink: %s -> %s" % (dst, src))
592 if os.path.islink(dst):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500593 os.remove(dst)
594 os.symlink(src, dst)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600595 else:
596 bb.note("Skipping symlink, source does not exist: %s -> %s" % (dst, src))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500597}
598
599MULTILIBRE_ALLOW_REP =. "${base_bindir}|${base_sbindir}|${bindir}|${sbindir}|${libexecdir}|${sysconfdir}|${nonarch_base_libdir}/udev|/lib/modules/[^/]*/modules.*|"
600MULTILIB_CHECK_FILE = "${WORKDIR}/multilib_check.py"
601MULTILIB_TEMP_ROOTFS = "${WORKDIR}/multilib"
602
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500603do_fetch[noexec] = "1"
604do_unpack[noexec] = "1"
605do_patch[noexec] = "1"
606do_configure[noexec] = "1"
607do_compile[noexec] = "1"
608do_install[noexec] = "1"
Andrew Geissler82c905d2020-04-13 13:39:40 -0500609deltask do_populate_lic
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500610deltask do_populate_sysroot
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500611do_package[noexec] = "1"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500612deltask do_package_qa
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500613do_packagedata[noexec] = "1"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400614deltask do_package_write_ipk
615deltask do_package_write_deb
616deltask do_package_write_rpm
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500617
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500618# Prepare the root links to point to the /usr counterparts.
619create_merged_usr_symlinks() {
620 root="$1"
621 install -d $root${base_bindir} $root${base_sbindir} $root${base_libdir}
622 lnr $root${base_bindir} $root/bin
623 lnr $root${base_sbindir} $root/sbin
624 lnr $root${base_libdir} $root/${baselib}
625
626 if [ "${nonarch_base_libdir}" != "${base_libdir}" ]; then
627 install -d $root${nonarch_base_libdir}
628 lnr $root${nonarch_base_libdir} $root/lib
629 fi
630
631 # create base links for multilibs
632 multi_libdirs="${@d.getVar('MULTILIB_VARIANTS')}"
633 for d in $multi_libdirs; do
634 install -d $root${exec_prefix}/$d
635 lnr $root${exec_prefix}/$d $root/$d
636 done
637}
638
639create_merged_usr_symlinks_rootfs() {
640 create_merged_usr_symlinks ${IMAGE_ROOTFS}
641}
642
643create_merged_usr_symlinks_sdk() {
644 create_merged_usr_symlinks ${SDK_OUTPUT}${SDKTARGETSYSROOT}
645}
646
647ROOTFS_PREPROCESS_COMMAND += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', 'create_merged_usr_symlinks_rootfs; ', '',d)}"
648POPULATE_SDK_PRE_TARGET_COMMAND += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', 'create_merged_usr_symlinks_sdk; ', '',d)}"
649
650reproducible_final_image_task () {
Brad Bishop316dfdd2018-06-25 12:45:53 -0400651 if [ "${BUILD_REPRODUCIBLE_BINARIES}" = "1" ]; then
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500652 if [ "$REPRODUCIBLE_TIMESTAMP_ROOTFS" = "" ]; then
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800653 REPRODUCIBLE_TIMESTAMP_ROOTFS=`git -C "${COREBASE}" log -1 --pretty=%ct 2>/dev/null` || true
654 if [ "${REPRODUCIBLE_TIMESTAMP_ROOTFS}" = "" ]; then
655 REPRODUCIBLE_TIMESTAMP_ROOTFS=`stat -c%Y ${@bb.utils.which(d.getVar("BBPATH"), "conf/bitbake.conf")}`
656 fi
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500657 fi
658 # Set mtime of all files to a reproducible value
659 bbnote "reproducible_final_image_task: mtime set to $REPRODUCIBLE_TIMESTAMP_ROOTFS"
660 find ${IMAGE_ROOTFS} -exec touch -h --date=@$REPRODUCIBLE_TIMESTAMP_ROOTFS {} \;
661 fi
662}
Brad Bishopc342db32019-05-15 21:57:59 -0400663
664systemd_preset_all () {
Brad Bishop96ff1982019-08-19 13:50:42 -0400665 if [ -e ${IMAGE_ROOTFS}${root_prefix}/lib/systemd/systemd ]; then
666 systemctl --root="${IMAGE_ROOTFS}" --preset-mode=enable-only preset-all
667 fi
Brad Bishopc342db32019-05-15 21:57:59 -0400668}
669
Brad Bishopc342db32019-05-15 21:57:59 -0400670IMAGE_PREPROCESS_COMMAND_append = " ${@ 'systemd_preset_all;' if bb.utils.contains('DISTRO_FEATURES', 'systemd', True, False, d) and not bb.utils.contains('IMAGE_FEATURES', 'stateless-rootfs', True, False, d) else ''} reproducible_final_image_task; "
Brad Bishop316dfdd2018-06-25 12:45:53 -0400671
672CVE_PRODUCT = ""