Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. config BR2_TARGET_ROOTFS_EXT2
  2. bool "ext2 root filesystem"
  3. help
  4. Build an ext2 root filesystem
  5. config BR2_TARGET_ROOTFS_EXT2_BLOCKS
  6. int "size in blocks (leave at 0 for auto calculation)"
  7. depends on BR2_TARGET_ROOTFS_EXT2
  8. default 0
  9. config BR2_TARGET_ROOTFS_EXT2_INODES
  10. int "inodes (leave at 0 for auto calculation)"
  11. depends on BR2_TARGET_ROOTFS_EXT2
  12. default 0
  13. config BR2_TARGET_ROOTFS_EXT2_RESBLKS
  14. int "reserved blocks percentage"
  15. depends on BR2_TARGET_ROOTFS_EXT2
  16. default 0
  17. choice
  18. prompt "Compression method"
  19. default BR2_TARGET_ROOTFS_EXT2_NONE
  20. depends on BR2_TARGET_ROOTFS_EXT2
  21. help
  22. Select compressor for ext2 filesystem of the root filesystem
  23. config BR2_TARGET_ROOTFS_EXT2_NONE
  24. bool "no compression"
  25. help
  26. Do not compress the ext2 filesystem.
  27. config BR2_TARGET_ROOTFS_EXT2_GZIP
  28. bool "gzip"
  29. help
  30. Do compress the ext2 filesystem with gzip.
  31. config BR2_TARGET_ROOTFS_EXT2_BZIP2
  32. bool "bzip2"
  33. help
  34. Do compress the ext2 filesystem with bzip2.
  35. config BR2_TARGET_ROOTFS_EXT2_LZMA
  36. bool "lzma"
  37. help
  38. Do compress the ext2 filesystem with lzma.
  39. endchoice