2
1

Config.in 856 B

123456789101112131415161718192021
  1. config BR2_TARGET_ROOTFS_INITRAMFS
  2. bool "initramfs for initial ramdisk of linux kernel"
  3. depends on BR2_LINUX_KERNEL
  4. select BR2_TARGET_ROOTFS_CPIO
  5. help
  6. Integrate the root filesystem generated by Buildroot as an
  7. initramfs inside the kernel image. This integration will
  8. take place automatically.
  9. A rootfs.cpio file will be generated in the images/ directory.
  10. This is the archive that will be included in the kernel image.
  11. The rootfs in the kernel will always be gzip'ed, regardless
  12. of how buildroot's cpio archive is configured.
  13. Note that enabling initramfs together with another filesystem
  14. formats doesn't make sense: you would end up having two
  15. identical root filesystems, one embedded inside the kernel
  16. image, and one separately.
  17. comment "initramfs requires a Linux kernel to be built"
  18. depends on !BR2_LINUX_KERNEL