Config.in 833 B

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_TARGET_ROOTFS_CPIO
  2. bool "cpio the root filesystem"
  3. help
  4. Build a cpio archive of the root filesystem
  5. choice
  6. prompt "Compression method"
  7. default BR2_TARGET_ROOTFS_CPIO_NONE
  8. depends on BR2_TARGET_ROOTFS_CPIO
  9. help
  10. Select compressor for cpio filesystem of the root filesystem
  11. config BR2_TARGET_ROOTFS_CPIO_NONE
  12. bool "no compression"
  13. help
  14. Do not compress the cpio filesystem.
  15. config BR2_TARGET_ROOTFS_CPIO_GZIP
  16. bool "gzip"
  17. help
  18. Do compress the cpio filesystem with gzip.
  19. config BR2_TARGET_ROOTFS_CPIO_BZIP2
  20. bool "bzip2"
  21. help
  22. Do compress the cpio filesystem with bzip2.
  23. config BR2_TARGET_ROOTFS_CPIO_LZMA
  24. bool "lzma"
  25. help
  26. Do compress the cpio filesystem with lzma.
  27. endchoice