Config.in 1.2 KB

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