summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/images/core-image-minimal-initramfs.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/images/core-image-minimal-initramfs.bb')
-rw-r--r--meta/recipes-core/images/core-image-minimal-initramfs.bb7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-core/images/core-image-minimal-initramfs.bb b/meta/recipes-core/images/core-image-minimal-initramfs.bb
index 664fe7310e..36e8771c4a 100644
--- a/meta/recipes-core/images/core-image-minimal-initramfs.bb
+++ b/meta/recipes-core/images/core-image-minimal-initramfs.bb
@@ -1,4 +1,5 @@
1# Simple initramfs image. Mostly used for live images. 1# Simple initramfs image. Mostly used for live images.
2SUMMARY = "Small image capable of booting a device."
2DESCRIPTION = "Small image capable of booting a device. The kernel includes \ 3DESCRIPTION = "Small image capable of booting a device. The kernel includes \
3the Minimal RAM-based Initial Root Filesystem (initramfs), which finds the \ 4the Minimal RAM-based Initial Root Filesystem (initramfs), which finds the \
4first 'init' program more efficiently." 5first 'init' program more efficiently."
@@ -16,7 +17,9 @@ PACKAGE_INSTALL = "${INITRAMFS_SCRIPTS} ${VIRTUAL-RUNTIME_base-utils} udev base-
16# Do not pollute the initrd image with rootfs features 17# Do not pollute the initrd image with rootfs features
17IMAGE_FEATURES = "" 18IMAGE_FEATURES = ""
18 19
19export IMAGE_BASENAME = "${MLPREFIX}core-image-minimal-initramfs" 20# Don't allow the initramfs to contain a kernel
21PACKAGE_EXCLUDE = "kernel-image-*"
22
20IMAGE_NAME_SUFFIX ?= "" 23IMAGE_NAME_SUFFIX ?= ""
21IMAGE_LINGUAS = "" 24IMAGE_LINGUAS = ""
22 25
@@ -29,4 +32,4 @@ IMAGE_ROOTFS_SIZE = "8192"
29IMAGE_ROOTFS_EXTRA_SPACE = "0" 32IMAGE_ROOTFS_EXTRA_SPACE = "0"
30 33
31# Use the same restriction as initramfs-module-install 34# Use the same restriction as initramfs-module-install
32COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*)-(linux.*|freebsd.*)' 35COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|aarch64.*|loongarch64.*)-(linux.*|freebsd.*)'