Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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