1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-07-03 16:09:48 +02:00

add kernel modules to the initramfs

This commit is contained in:
DanyLE 2023-08-01 15:15:49 +02:00
parent def53409d3
commit 4c42c6d31d

View File

@ -2,7 +2,7 @@
DESCRIPTION = "Recovery initramfs image."
PACKAGE_INSTALL = "recovery-boot busybox ${VIRTUAL-RUNTIME_base-utils} udev base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}"
PACKAGE_INSTALL = "recovery-boot kernel-modules busybox ${VIRTUAL-RUNTIME_base-utils} udev base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}"
# Do not pollute the initrd image with rootfs features
IMAGE_FEATURES = ""
@ -20,4 +20,10 @@ IMAGE_ROOTFS_SIZE = "8192"
IMAGE_ROOTFS_EXTRA_SPACE = "0"
# Use the same restriction as initramfs-module-install
COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)'
COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)'
ROOTFS_POSTPROCESS_COMMAND += "clobber_unused"
clobber_unused () {
rm ${IMAGE_ROOTFS}/boot/*
}