Config.in 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. config BR2_TARGET_ROOTFS_EXT2
  2. bool "ext2 root filesystem"
  3. default y
  4. select BR2_HOST_FAKEROOT
  5. help
  6. Build an ext2 root filesystem
  7. config BR2_TARGET_ROOTFS_EXT2_BLOCKS
  8. int "size in blocks (leave at 0 for auto calculation)"
  9. depends on BR2_TARGET_ROOTFS_EXT2
  10. default 0
  11. config BR2_TARGET_ROOTFS_EXT2_INODES
  12. int "inodes (leave at 0 for auto calculation)"
  13. depends on BR2_TARGET_ROOTFS_EXT2
  14. default 0
  15. config BR2_TARGET_ROOTFS_EXT2_RESBLKS
  16. int "reserved blocks percentage"
  17. depends on BR2_TARGET_ROOTFS_EXT2
  18. default 0
  19. config BR2_TARGET_ROOTFS_EXT2_SQUASH
  20. bool "Make all files be owned by root"
  21. depends on BR2_TARGET_ROOTFS_EXT2
  22. default y
  23. config BR2_TARGET_ROOTFS_EXT2_OUTPUT
  24. string "Output File"
  25. depends on BR2_TARGET_ROOTFS_EXT2
  26. default "$(IMAGE).ext2"
  27. choice
  28. prompt "Compression method"
  29. default BR2_TARGET_ROOTFS_EXT2_NONE
  30. depends on BR2_TARGET_ROOTFS_EXT2
  31. help
  32. Select compressor for ext2 filesystem of the root filesystem
  33. config BR2_TARGET_ROOTFS_EXT2_NONE
  34. bool "no compression"
  35. help
  36. Do not compress the ext2 filesystem.
  37. config BR2_TARGET_ROOTFS_EXT2_GZIP
  38. bool "gzip"
  39. help
  40. Do compress the ext2 filesystem with gzip.
  41. Note that you either have to have gzip installed on your host
  42. or select to build a gzip for your host. See the packages submenu.
  43. config BR2_TARGET_ROOTFS_EXT2_BZIP2
  44. bool "bzip2"
  45. help
  46. Do compress the ext2 filesystem with bzip2.
  47. Note that you either have to have bzip2 installed on your host
  48. or select to build a bzip2 for your host. See the packages submenu.
  49. config BR2_TARGET_ROOTFS_EXT2_LZMA
  50. bool "lzma"
  51. help
  52. Do compress the ext2 filesystem with lzma.
  53. Note that you either have to have lzma installed on your host
  54. or select to build a lzma for your host. See the packages submenu.
  55. endchoice
  56. config BR2_TARGET_ROOTFS_EXT2_COPYTO
  57. string "also copy the image to..."
  58. depends on BR2_TARGET_ROOTFS_EXT2
  59. default ""
  60. help
  61. Copies the resulting image to a secondary location
  62. like a tftp server's root directory.