Config.in 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Archival Utilities"
  6. config BUSYBOX_FEATURE_SEAMLESS_LZMA
  7. bool "Make tar, rpm, modprobe etc understand .lzma data"
  8. default y
  9. help
  10. Make tar, rpm, modprobe etc understand .lzma data.
  11. config BUSYBOX_FEATURE_SEAMLESS_BZ2
  12. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  13. default y
  14. help
  15. Make tar, rpm, modprobe etc understand .bz2 data.
  16. config BUSYBOX_FEATURE_SEAMLESS_GZ
  17. bool "Make tar, rpm, modprobe etc understand .gz data"
  18. default y
  19. help
  20. Make tar, rpm, modprobe etc understand .gz data.
  21. config BUSYBOX_FEATURE_SEAMLESS_Z
  22. bool "Make tar and gunzip understand .Z data"
  23. default n
  24. help
  25. Make tar and gunzip understand .Z data.
  26. config BUSYBOX_AR
  27. bool "ar"
  28. default n
  29. depends on !ADK_PACKAGE_BINUTILS
  30. help
  31. ar is an archival utility program used to create, modify, and
  32. extract contents from archives. An archive is a single file holding
  33. a collection of other files in a structure that makes it possible to
  34. retrieve the original individual files (called archive members).
  35. The original files' contents, mode (permissions), timestamp, owner,
  36. and group are preserved in the archive, and can be restored on
  37. extraction.
  38. The stored filename is limited to 15 characters. (for more information
  39. see long filename support).
  40. ar has 60 bytes of overheads for every stored file.
  41. This implementation of ar can extract archives, it cannot create or
  42. modify them.
  43. On an x86 system, the ar applet adds about 1K.
  44. Unless you have a specific application which requires ar, you should
  45. probably say N here.
  46. config BUSYBOX_FEATURE_AR_LONG_FILENAMES
  47. bool "Support for long filenames (not needed for debs)"
  48. default n
  49. depends on BUSYBOX_AR
  50. help
  51. By default the ar format can only store the first 15 characters
  52. of the filename, this option removes that limitation.
  53. It supports the GNU ar long filename method which moves multiple long
  54. filenames into a the data section of a new ar entry.
  55. config BUSYBOX_BUNZIP2
  56. bool "bunzip2"
  57. depends on !ADK_PACKAGE_BZIP2
  58. default n
  59. help
  60. bunzip2 is a compression utility using the Burrows-Wheeler block
  61. sorting text compression algorithm, and Huffman coding. Compression
  62. is generally considerably better than that achieved by more
  63. conventional LZ77/LZ78-based compressors, and approaches the
  64. performance of the PPM family of statistical compressors.
  65. Unless you have a specific application which requires bunzip2, you
  66. should probably say N here.
  67. config BUSYBOX_BZIP2
  68. bool "bzip2"
  69. depends on !ADK_PACKAGE_BZIP2
  70. default n
  71. help
  72. bzip2 is a compression utility using the Burrows-Wheeler block
  73. sorting text compression algorithm, and Huffman coding. Compression
  74. is generally considerably better than that achieved by more
  75. conventional LZ77/LZ78-based compressors, and approaches the
  76. performance of the PPM family of statistical compressors.
  77. Unless you have a specific application which requires bzip2, you
  78. should probably say N here.
  79. config BUSYBOX_CPIO
  80. bool "cpio"
  81. default n
  82. depends on !ADK_PACKAGE_CPIO
  83. help
  84. cpio is an archival utility program used to create, modify, and
  85. extract contents from archives.
  86. cpio has 110 bytes of overheads for every stored file.
  87. This implementation of cpio can extract cpio archives created in the
  88. "newc" or "crc" format, it cannot create or modify them.
  89. Unless you have a specific application which requires cpio, you
  90. should probably say N here.
  91. config BUSYBOX_FEATURE_CPIO_O
  92. bool "Support for archive creation"
  93. default n
  94. depends on BUSYBOX_CPIO
  95. help
  96. This implementation of cpio can create cpio archives in the "newc"
  97. format only.
  98. config BUSYBOX_FEATURE_CPIO_P
  99. bool "Support for passthrough mode"
  100. default n
  101. depends on BUSYBOX_FEATURE_CPIO_O
  102. help
  103. Passthrough mode. Rarely used.
  104. config BUSYBOX_DPKG
  105. bool "dpkg"
  106. default n
  107. select BUSYBOX_FEATURE_SEAMLESS_GZ
  108. help
  109. dpkg is a medium-level tool to install, build, remove and manage
  110. Debian packages.
  111. This implementation of dpkg has a number of limitations,
  112. you should use the official dpkg if possible.
  113. config BUSYBOX_DPKG_DEB
  114. bool "dpkg_deb"
  115. default n
  116. select BUSYBOX_FEATURE_SEAMLESS_GZ
  117. help
  118. dpkg-deb unpacks and provides information about Debian archives.
  119. This implementation of dpkg-deb cannot pack archives.
  120. Unless you have a specific application which requires dpkg-deb,
  121. say N here.
  122. config BUSYBOX_FEATURE_DPKG_DEB_EXTRACT_ONLY
  123. bool "Extract only (-x)"
  124. default n
  125. depends on BUSYBOX_DPKG_DEB
  126. help
  127. This reduces dpkg-deb to the equivalent of
  128. "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
  129. of the extra dpkg-deb, ar or tar options are needed, they are linked
  130. to internally.
  131. config BUSYBOX_GUNZIP
  132. bool "gunzip"
  133. default y
  134. help
  135. gunzip is used to decompress archives created by gzip.
  136. You can use the `-t' option to test the integrity of
  137. an archive, without decompressing it.
  138. config BUSYBOX_GZIP
  139. bool "gzip"
  140. default y
  141. help
  142. gzip is used to compress files.
  143. It's probably the most widely used UNIX compression program.
  144. config BUSYBOX_FEATURE_GZIP_LONG_OPTIONS
  145. bool "Enable long options"
  146. default n
  147. depends on BUSYBOX_GZIP && BUSYBOX_LONG_OPTS
  148. help
  149. Enable use of long options, increases size by about 106 Bytes
  150. config BUSYBOX_LZOP
  151. bool "lzop"
  152. default n
  153. help
  154. Lzop compression/decompresion.
  155. config BUSYBOX_LZOP_COMPR_HIGH
  156. bool "lzop complession levels 7,8,9 (not very useful)"
  157. default n
  158. depends on BUSYBOX_LZOP
  159. help
  160. High levels (7,8,9) of lzop compression. These levels
  161. are actually slower than gzip at equivalent compression ratios
  162. and take up 3.2K of code.
  163. config BUSYBOX_IPKG
  164. bool "ipkg"
  165. default n
  166. select BUSYBOX_MD5SUM
  167. depends on BUSYBOX_WGET || ADK_PACKAGE_WGET
  168. depends on ADK_TARGET_PACKAGE_IPKG
  169. help
  170. ipkg is the itsy package management system.
  171. config BUSYBOX_RPM2CPIO
  172. bool "rpm2cpio"
  173. depends on !ADK_PACKAGE_RPM
  174. default n
  175. help
  176. Converts an RPM file into a CPIO archive.
  177. config BUSYBOX_RPM
  178. bool "rpm"
  179. depends on !ADK_PACKAGE_RPM
  180. default n
  181. help
  182. Mini RPM applet - queries and extracts RPM packages.
  183. config BUSYBOX_TAR
  184. bool "tar"
  185. depends on !ADK_PACKAGE_TAR
  186. default y
  187. help
  188. tar is an archiving program. It's commonly used with gzip to
  189. create compressed archives. It's probably the most widely used
  190. UNIX archive program.
  191. if TAR
  192. config BUSYBOX_FEATURE_TAR_CREATE
  193. bool "Enable archive creation"
  194. default y
  195. depends on BUSYBOX_TAR
  196. help
  197. If you enable this option you'll be able to create
  198. tar archives using the `-c' option.
  199. config BUSYBOX_FEATURE_TAR_AUTODETECT
  200. bool "Autodetect compressed tarballs"
  201. default y
  202. depends on BUSYBOX_FEATURE_SEAMLESS_Z || BUSYBOX_FEATURE_SEAMLESS_GZ || BUSYBOX_FEATURE_SEAMLESS_BZ2 || BUSYBOX_FEATURE_SEAMLESS_LZMA
  203. help
  204. With this option tar can automatically detect compressed
  205. tarballs. Currently it works only on files (not pipes etc).
  206. config BUSYBOX_FEATURE_TAR_FROM
  207. bool "Enable -X (exclude from) and -T (include from) options)"
  208. default y
  209. depends on BUSYBOX_TAR
  210. help
  211. If you enable this option you'll be able to specify
  212. a list of files to include or exclude from an archive.
  213. config BUSYBOX_FEATURE_TAR_OLDGNU_COMPATIBILITY
  214. bool "Support for old tar header format"
  215. default N
  216. depends on BUSYBOX_TAR
  217. help
  218. This option is required to unpack archives created in
  219. the old GNU format; help to kill this old format by
  220. repacking your ancient archives with the new format.
  221. config BUSYBOX_FEATURE_TAR_OLDSUN_COMPATIBILITY
  222. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  223. default N
  224. depends on BUSYBOX_TAR
  225. help
  226. This option is required to unpack archives created by some old
  227. version of Sun's tar (it was calculating checksum using signed
  228. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  229. tarballs still exist.
  230. config BUSYBOX_FEATURE_TAR_GNU_EXTENSIONS
  231. bool "Support for GNU tar extensions (long filenames)"
  232. default y
  233. depends on BUSYBOX_TAR
  234. help
  235. With this option busybox supports GNU long filenames and
  236. linknames.
  237. config BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  238. bool "Enable long options"
  239. default n
  240. depends on BUSYBOX_TAR && BUSYBOX_LONG_OPTS
  241. help
  242. Enable use of long options, increases size by about 400 Bytes
  243. config BUSYBOX_FEATURE_TAR_UNAME_GNAME
  244. bool "Enable use of user and group names"
  245. default y
  246. depends on BUSYBOX_TAR
  247. help
  248. Enables use of user and group names in tar. This affects contents
  249. listings (-t) and preserving permissions when unpacking (-p).
  250. +200 bytes.
  251. config BUSYBOX_FEATURE_TAR_NOPRESERVE_TIME
  252. bool "Enable -m (do not preserve time) option"
  253. default n
  254. depends on BUSYBOX_TAR
  255. help
  256. With this option busybox supports GNU tar -m
  257. (do not preserve time) option.
  258. endif #tar
  259. config BUSYBOX_UNCOMPRESS
  260. bool "uncompress"
  261. default n
  262. help
  263. uncompress is used to decompress archives created by compress.
  264. Not much used anymore, replaced by gzip/gunzip.
  265. config BUSYBOX_UNLZMA
  266. bool "unlzma"
  267. default n
  268. help
  269. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  270. compression algorithm, and range coding. Compression
  271. is generally considerably better than that achieved by the bzip2
  272. compressors.
  273. The BusyBox unlzma applet is limited to de-compression only.
  274. On an x86 system, this applet adds about 4K.
  275. Unless you have a specific application which requires unlzma, you
  276. should probably say N here.
  277. config BUSYBOX_FEATURE_LZMA_FAST
  278. bool "Optimize unlzma for speed"
  279. default n
  280. depends on BUSYBOX_UNLZMA
  281. help
  282. This option reduces decompression time by about 25% at the cost of
  283. a 1K bigger binary.
  284. config BUSYBOX_UNZIP
  285. bool "unzip"
  286. default n
  287. help
  288. unzip will list or extract files from a ZIP archive,
  289. commonly found on DOS/WIN systems. The default behavior
  290. (with no options) is to extract the archive into the
  291. current directory. Use the `-d' option to extract to a
  292. directory of your choice.
  293. endmenu