core-image-minimal-initramfs.bb 839 B

12345678910111213141516171819202122232425
  1. # Simple initramfs image. Mostly used for live images.
  2. DESCRIPTION = "Small image capable of booting a device. The kernel includes \
  3. the Minimal RAM-based Initial Root Filesystem (initramfs), which finds the \
  4. first 'init' program more efficiently."
  5. PACKAGE_INSTALL = "initramfs-live-boot initramfs-live-install initramfs-live-install-efi ${VIRTUAL-RUNTIME_base-utils} udev base-passwd ${ROOTFS_BOOTSTRAP_INSTALL}"
  6. # Do not pollute the initrd image with rootfs features
  7. IMAGE_FEATURES = ""
  8. export IMAGE_BASENAME = "core-image-minimal-initramfs"
  9. IMAGE_LINGUAS = ""
  10. LICENSE = "MIT"
  11. IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}"
  12. inherit core-image
  13. IMAGE_ROOTFS_SIZE = "8192"
  14. IMAGE_ROOTFS_EXTRA_SPACE = "0"
  15. BAD_RECOMMENDATIONS += "busybox-syslog"
  16. # Use the same restriction as initramfs-live-install
  17. COMPATIBLE_HOST = "(i.86|x86_64).*-linux"