Config.in 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. config BR2_TARGET_ROOTFS_UBIFS
  2. bool "ubifs root filesystem"
  3. help
  4. Build a ubifs root filesystem
  5. config BR2_TARGET_ROOTFS_UBIFS_LEBSIZE
  6. hex "UBI logical erase block size"
  7. depends on BR2_TARGET_ROOTFS_UBIFS
  8. default 0x1f800
  9. config BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE
  10. hex "UBI minimum I/O size"
  11. depends on BR2_TARGET_ROOTFS_UBIFS
  12. default 0x800
  13. help
  14. Some comment required here
  15. config BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT
  16. int "Maximum LEB count"
  17. depends on BR2_TARGET_ROOTFS_UBIFS
  18. default 2048
  19. help
  20. Some comment required here
  21. choice
  22. prompt "ubifs runtime compression"
  23. default BR2_TARGET_ROOTFS_UBIFS_RT_LZO
  24. depends on BR2_TARGET_ROOTFS_UBIFS
  25. help
  26. Select which compression format to use at run-time within
  27. the ubifs file system.
  28. config BR2_TARGET_ROOTFS_UBIFS_RT_NONE
  29. bool "no compression"
  30. help
  31. Don't use run-time compression.
  32. config BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB
  33. bool "gzip"
  34. help
  35. Use zlib compression at run-time.
  36. config BR2_TARGET_ROOTFS_UBIFS_RT_LZO
  37. bool "lzo"
  38. help
  39. Use lzo compression at run-time.
  40. endchoice
  41. choice
  42. prompt "Compression method"
  43. default BR2_TARGET_ROOTFS_UBIFS_NONE
  44. depends on BR2_TARGET_ROOTFS_UBIFS
  45. help
  46. Select which compression format to compress the final image
  47. into.
  48. config BR2_TARGET_ROOTFS_UBIFS_NONE
  49. bool "no compression"
  50. help
  51. Do not compress the ubifs filesystem.
  52. config BR2_TARGET_ROOTFS_UBIFS_GZIP
  53. bool "gzip"
  54. help
  55. Do compress the ubifs filesystem with gzip.
  56. config BR2_TARGET_ROOTFS_UBIFS_BZIP2
  57. bool "bzip2"
  58. help
  59. Do compress the ubifs filesystem with bzip2.
  60. config BR2_TARGET_ROOTFS_UBIFS_LZMA
  61. bool "lzma"
  62. help
  63. Do compress the ubifs filesystem with lzma.
  64. endchoice
  65. config BR2_TARGET_ROOTFS_UBI
  66. depends on BR2_TARGET_ROOTFS_UBIFS
  67. bool "Embed into an UBI image"
  68. help
  69. Build an ubi image from the ubifs one (with ubinize).
  70. config BR2_TARGET_ROOTFS_UBI_PEBSIZE
  71. hex "UBI physical erase block size"
  72. depends on BR2_TARGET_ROOTFS_UBI
  73. default 0x20000
  74. help
  75. Tells ubinize the physical eraseblock size of the flash chip
  76. the ubi image is created for.
  77. config BR2_TARGET_ROOTFS_UBI_SUBSIZE
  78. int "UBI sub-page size"
  79. depends on BR2_TARGET_ROOTFS_UBI
  80. default 512
  81. help
  82. Tells ubinize that the flash supports sub-pages and the sub-page
  83. size. Use 0 if subpages are not supported on flash chip.