1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-16 15:26:39 +02:00
meta-rpi-diya/recipes-core/images/core-image-recovery.bb

28 lines
743 B
BlitzBasic
Raw Normal View History

2023-08-01 12:06:45 +02:00
DESCRIPTION = "Recovery initramfs image."
2023-08-01 13:08:30 +02:00
INITRAMFS_SCRIPTS = "\
2023-08-01 13:56:10 +02:00
initramfs-boot \
2023-08-01 12:45:14 +02:00
initramfs-module-udev \
"
2023-08-01 12:06:45 +02:00
2023-08-01 13:09:45 +02:00
PACKAGE_INSTALL = "${INITRAMFS_SCRIPTS} busybox ${VIRTUAL-RUNTIME_base-utils} udev base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}"
2023-08-01 12:06:45 +02:00
# Do not pollute the initrd image with rootfs features
IMAGE_FEATURES = ""
export IMAGE_BASENAME = "${MLPREFIX}core-image-recovery"
IMAGE_NAME_SUFFIX ?= ""
IMAGE_LINGUAS = ""
LICENSE = "MIT"
IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}"
inherit core-image
IMAGE_ROOTFS_SIZE = "8192"
IMAGE_ROOTFS_EXTRA_SPACE = "0"
# Use the same restriction as initramfs-module-install
2023-08-01 12:45:14 +02:00
COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)'