Config.in 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. config BR2_TARGET_ROOTFS_UBIFS
  2. bool "ubifs root filesystem"
  3. help
  4. Build a ubifs root filesystem
  5. if BR2_TARGET_ROOTFS_UBIFS
  6. config BR2_TARGET_ROOTFS_UBIFS_LEBSIZE
  7. hex "logical eraseblock size"
  8. default 0x1f800
  9. help
  10. Logical eraseblock (LEB) size. The value provided here is
  11. passed to the -e/--leb-size option of mkfs.ubifs.
  12. config BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE
  13. hex "minimum I/O unit size"
  14. default 0x800
  15. help
  16. Minimum I/O unit size. The value provided here is passed
  17. to the -m/--min-io-size option of mkfs.ubifs/ubinize.
  18. config BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT
  19. int "maximum logical eraseblock count"
  20. default 2048
  21. help
  22. Maximum logical eraseblock (LEB) count. The value provided
  23. here is passed to the -c/--max-leb-cnt option of mkfs.ubifs.
  24. choice
  25. prompt "ubifs runtime compression"
  26. default BR2_TARGET_ROOTFS_UBIFS_RT_LZO
  27. help
  28. Select which compression format to use at run-time within
  29. the ubifs file system. The choice made here is passed to
  30. the -x/--compr option of mkfs.ubifs
  31. config BR2_TARGET_ROOTFS_UBIFS_RT_NONE
  32. bool "no compression"
  33. help
  34. Don't use run-time compression.
  35. config BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB
  36. bool "gzip"
  37. help
  38. Use zlib compression at run-time.
  39. config BR2_TARGET_ROOTFS_UBIFS_RT_LZO
  40. bool "lzo"
  41. help
  42. Use lzo compression at run-time.
  43. endchoice
  44. choice
  45. prompt "Compression method"
  46. default BR2_TARGET_ROOTFS_UBIFS_NONE
  47. help
  48. Select which compression format to compress the final image
  49. into.
  50. config BR2_TARGET_ROOTFS_UBIFS_NONE
  51. bool "no compression"
  52. help
  53. Do not compress the ubifs filesystem.
  54. config BR2_TARGET_ROOTFS_UBIFS_GZIP
  55. bool "gzip"
  56. help
  57. Do compress the ubifs filesystem with gzip.
  58. config BR2_TARGET_ROOTFS_UBIFS_BZIP2
  59. bool "bzip2"
  60. help
  61. Do compress the ubifs filesystem with bzip2.
  62. config BR2_TARGET_ROOTFS_UBIFS_LZMA
  63. bool "lzma"
  64. help
  65. Do compress the ubifs filesystem with lzma.
  66. config BR2_TARGET_ROOTFS_UBIFS_LZO
  67. bool "lzo"
  68. help
  69. Do compress the ubifs filesystem with lzop.
  70. config BR2_TARGET_ROOTFS_UBIFS_XZ
  71. bool "xz"
  72. help
  73. Do compress the ubifs filesystem with xz.
  74. endchoice
  75. config BR2_TARGET_ROOTFS_UBIFS_OPTS
  76. string "Additional mkfs.ubifs options"
  77. help
  78. Any additional mkfs.ubifs options you may want to include.
  79. endif # BR2_TARGET_ROOTFS_UBIFS