Config.in 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. menuconfig BR2_PACKAGE_MTD
  2. bool "mtd/jffs2 utilities"
  3. select BR2_PACKAGE_ZLIB
  4. help
  5. Build mtd/jffs utilities
  6. if BR2_PACKAGE_MTD
  7. choice
  8. prompt "Source package selection"
  9. default BR2_PACKAGE_MTD_UTILS
  10. config BR2_PACKAGE_MTD_UTILS
  11. bool "Use MTD-utils release"
  12. select BR2_PACKAGE_LZO
  13. help
  14. Build mtd/jffs utilities with Dataflash support
  15. config BR2_PACKAGE_MTD_20061007
  16. bool "Use MTD snapshot from 20061007"
  17. depends on BR2_DEPRECATED || BR2_RECENT
  18. help
  19. Build mtd/jffs utilities with Dataflash support
  20. config BR2_PACKAGE_MTD_20050122
  21. bool "Use MTD snapshot from 20050122"
  22. depends on BR2_DEPRECATED
  23. help
  24. Use the stable release.
  25. config BR2_PACKAGE_MTD_UTILS_GIT
  26. bool "Use MTD-utils from GIT"
  27. help
  28. Use the latest from GIT or a particular revision.
  29. You should probably say NO except for specific purpose.
  30. endchoice
  31. comment "MTD tools selection"
  32. config BR2_PACKAGE_MTD_DOCFDISK
  33. bool "docfdisk"
  34. config BR2_PACKAGE_MTD_DOC_LOADBIOS
  35. bool "doc_loadbios"
  36. config BR2_PACKAGE_MTD_ERASE
  37. bool "erase"
  38. default y
  39. depends on BR2_PACKAGE_MTD_20050122
  40. config BR2_PACKAGE_MTD_FLASHCP
  41. bool "flashcp"
  42. default y
  43. config BR2_PACKAGE_MTD_FLASH_ERASE
  44. bool "flash_erase"
  45. default y
  46. config BR2_PACKAGE_MTD_FLASH_ERASEALL
  47. bool "flash_eraseall"
  48. default y
  49. config BR2_PACKAGE_MTD_FLASH_INFO
  50. bool "flash_info"
  51. default y
  52. config BR2_PACKAGE_MTD_FLASH_LOCK
  53. bool "flash_lock"
  54. default y
  55. config BR2_PACKAGE_MTD_FLASH_UNLOCK
  56. bool "flash_unlock"
  57. default y
  58. config BR2_PACKAGE_MTD_FTL_CHECK
  59. bool "ftl_check"
  60. default y
  61. config BR2_PACKAGE_MTD_FTL_FORMAT
  62. bool "ftl_format"
  63. default y
  64. config BR2_PACKAGE_MTD_JFFS2DUMP
  65. bool "jffs2dump"
  66. default y
  67. config BR2_PACKAGE_MTD_JFFS3DUMP
  68. bool "jffs3dump"
  69. default y
  70. depends on BR2_PACKAGE_MTD_20050122
  71. config BR2_PACKAGE_MTD_MKFSJFFS2
  72. bool "mkfs.jffs2"
  73. default y
  74. config BR2_PACKAGE_MTD_MKFSJFFS
  75. bool "mkfs.jffs"
  76. depends on BR2_PACKAGE_MTD_20050122 || BR2_PACKAGE_MTD_20061007 || BR2_PACKAGE_MTD_UTILS
  77. config BR2_PACKAGE_MTD_MTD_DEBUG
  78. bool "mtd_debug"
  79. default y
  80. config BR2_PACKAGE_MTD_NANDDUMP
  81. bool "nanddump"
  82. default y
  83. config BR2_PACKAGE_MTD_NANDTEST
  84. bool "nandtest"
  85. default y
  86. depends on BR2_PACKAGE_MTD_UTILS_GIT
  87. config BR2_PACKAGE_MTD_NANDWRITE
  88. bool "nandwrite"
  89. default y
  90. config BR2_PACKAGE_MTD_NFTL_FORMAT
  91. bool "nftl_format"
  92. config BR2_PACKAGE_MTD_NFTLDUMP
  93. bool "nftldump"
  94. config BR2_PACKAGE_MTD_SUMTOOL
  95. bool "sumtool"
  96. default y
  97. config BR2_PACKAGE_MTD_UBIATTACH
  98. bool "ubiattach"
  99. default y
  100. depends on BR2_PACKAGE_MTD_UTILS_GIT
  101. config BR2_PACKAGE_MTD_UBICRC32
  102. bool "ubicrc32"
  103. default y
  104. depends on BR2_PACKAGE_MTD_UTILS_GIT
  105. config BR2_PACKAGE_MTD_UBIDETACH
  106. bool "ubidetach"
  107. default y
  108. depends on BR2_PACKAGE_MTD_UTILS_GIT
  109. config BR2_PACKAGE_MTD_UBIMIRROR
  110. bool "ubimirror"
  111. default y
  112. depends on BR2_PACKAGE_MTD_UTILS_GIT
  113. config BR2_PACKAGE_MTD_UBIMKVOL
  114. bool "ubimkvol"
  115. default y
  116. depends on BR2_PACKAGE_MTD_UTILS_GIT
  117. config BR2_PACKAGE_MTD_UBINFO
  118. bool "ubinfo"
  119. default y
  120. depends on BR2_PACKAGE_MTD_UTILS_GIT
  121. config BR2_PACKAGE_MTD_UBIRMVOL
  122. bool "ubirmvol"
  123. default y
  124. depends on BR2_PACKAGE_MTD_UTILS_GIT
  125. config BR2_PACKAGE_MTD_UBIUPDATEVOL
  126. bool "ubiupdatevol"
  127. default y
  128. depends on BR2_PACKAGE_MTD_UTILS_GIT
  129. endif