mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

The existing workaround to populate /var/volatile was broken since oe-core has a rootfs postprocess command that ensures that /var/volatile is empty .. which undoes our creation of the log and tmp directories. We :remove that routine to get our /var/volatile as we like it. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
58 lines
2.0 KiB
BlitzBasic
58 lines
2.0 KiB
BlitzBasic
#
|
|
# Based on examples from Scott Murray (Building Container Images with
|
|
# OpenEmbedded and the Yocto Project) ELCe 2018
|
|
#
|
|
SUMMARY = "Basic container image"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
IMAGE_FSTYPES = "container oci"
|
|
|
|
inherit image
|
|
inherit image-oci
|
|
|
|
IMAGE_FEATURES = ""
|
|
IMAGE_LINGUAS = ""
|
|
NO_RECOMMENDATIONS = "1"
|
|
|
|
IMAGE_INSTALL = " \
|
|
base-files \
|
|
base-passwd \
|
|
netbase \
|
|
${CONTAINER_SHELL} \
|
|
"
|
|
|
|
# Keep the entrypoint empty so that this image can be easily be
|
|
# inherted and re-used for interactive or non interactive images
|
|
OCI_IMAGE_ENTRYPOINT ?= ""
|
|
|
|
# If the following is configured in local.conf (or the distro):
|
|
# PACKAGE_EXTRA_ARCHS:append = " container-dummy-provides"
|
|
#
|
|
# it has been explicitly # indicated that we don't want or need a shell, so we'll
|
|
# add the dummy provides.
|
|
#
|
|
# This is required, since there are postinstall scripts in base-files and base-passwd
|
|
# that reference /bin/sh and we'll get a rootfs error if there's no shell or no dummy
|
|
# provider.
|
|
CONTAINER_SHELL ?= "${@bb.utils.contains('PACKAGE_EXTRA_ARCHS', 'container-dummy-provides', 'container-dummy-provides', 'busybox', d)}"
|
|
|
|
# Allow build with or without a specific kernel
|
|
IMAGE_CONTAINER_NO_DUMMY = "1"
|
|
|
|
# Workaround /var/volatile for now
|
|
# This is required because the lack of post-install scripts means volatile
|
|
# directories (/var/volatile/*, etc.) are not created, so we do that ourselves
|
|
# in a minimal way below. We could bootstrap and run some of the more standard
|
|
# scripts that do it at boot, but we avoid that until needed.
|
|
ROOTFS_POSTPROCESS_COMMAND += "rootfs_fixup_var_volatile ; "
|
|
|
|
# This :remove is required, because it comes along and deletes our /var/volatile/
|
|
# fixups!
|
|
ROOTFS_POSTPROCESS_COMMAND:remove = "empty_var_volatile"
|
|
|
|
rootfs_fixup_var_volatile () {
|
|
install -m 1777 -d ${IMAGE_ROOTFS}/${localstatedir}/volatile/tmp
|
|
install -m 755 -d ${IMAGE_ROOTFS}/${localstatedir}/volatile/log
|
|
}
|