Config.in 881 B

12345678910111213141516171819202122
  1. config BR2_TARGET_ROOTFS_INITRAMFS
  2. bool "initial RAM filesystem linked into 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 default rootfs compression set in the kernel configuration
  12. is used, regardless of how buildroot's cpio archive is
  13. configured.
  14. Note that enabling initramfs together with another filesystem
  15. formats doesn't make sense: you would end up having two
  16. identical root filesystems, one embedded inside the kernel
  17. image, and one separately.
  18. comment "initramfs needs a Linux kernel to be built"
  19. depends on !BR2_LINUX_KERNEL