30 lines
853 B
Plaintext
30 lines
853 B
Plaintext
# Simple initramfs image.
|
|
|
|
INITRAMFS_SCRIPTS = "\
|
|
initramfs-framework-base \
|
|
initramfs-module-debug \
|
|
initramfs-module-cryptfs \
|
|
initramfs-module-cryptfs-tpm2 \
|
|
"
|
|
|
|
PACKAGE_INSTALL = "\
|
|
${INITRAMFS_SCRIPTS} \
|
|
${VIRTUAL-RUNTIME_base-utils} \
|
|
udev \
|
|
base-passwd \
|
|
base-files \
|
|
bash \
|
|
busybox \
|
|
${ROOTFS_BOOTSTRAP_INSTALL} \
|
|
"
|
|
|
|
# Do not pollute the initrd image with rootfs features
|
|
IMAGE_FEATURES = ""
|
|
|
|
IMAGE_NAME_SUFFIX ?= ""
|
|
|
|
IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}"
|
|
|
|
# Use the same restriction as initramfs-module-install
|
|
COMPATIBLE_HOST = '(arm|arm-oe-linux-gnueabi).*-linux'
|