riscv-initramfs-image.bb 623 B

12345678910111213141516171819202122
  1. DESCRIPTION = "initramfs image to be used together with SiFive Unleashed board \
  2. as the board currently only supports booting from a ramdisk image"
  3. # Do not pollute the initrd image with rootfs features
  4. IMAGE_FEATURES = ""
  5. export IMAGE_BASENAME = "${MLPREFIX}riscv-initramfs-image"
  6. IMAGE_LINGUAS = ""
  7. LICENSE = "MIT"
  8. IMAGE_FSTYPES += "${INITRAMFS_FSTYPES}"
  9. inherit core-image
  10. IMAGE_ROOTFS_SIZE = "8192"
  11. IMAGE_ROOTFS_EXTRA_SPACE = "0"
  12. BAD_RECOMMENDATIONS += "busybox-syslog"
  13. # WIC is not compatible with an initramfs image, also enabling WIC would cause
  14. # an circular dependency.
  15. IMAGE_FSTYPES_remove = " wic wic.gz"