Config.in 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. menu "Archival Utilities"
  7. config FEATURE_SEAMLESS_XZ
  8. bool "Make tar, rpm, modprobe etc understand .xz data"
  9. default y
  10. config FEATURE_SEAMLESS_LZMA
  11. bool "Make tar, rpm, modprobe etc understand .lzma data"
  12. default y
  13. config FEATURE_SEAMLESS_BZ2
  14. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  15. default y
  16. config FEATURE_SEAMLESS_GZ
  17. bool "Make tar, rpm, modprobe etc understand .gz data"
  18. default y
  19. config FEATURE_SEAMLESS_Z
  20. bool "Make tar, rpm, modprobe etc understand .Z data"
  21. default n # it is ancient
  22. config AR
  23. bool "ar (9.5 kb)"
  24. default n # needs to be improved to be able to replace binutils ar
  25. help
  26. ar is an archival utility program used to create, modify, and
  27. extract contents from archives. In practice, it is used exclusively
  28. for object module archives used by compilers.
  29. Unless you have a specific application which requires ar, you should
  30. probably say N here: most compilers come with their own ar utility.
  31. config FEATURE_AR_LONG_FILENAMES
  32. bool "Support long filenames (not needed for debs)"
  33. default y
  34. depends on AR
  35. help
  36. By default the ar format can only store the first 15 characters
  37. of the filename, this option removes that limitation.
  38. It supports the GNU ar long filename method which moves multiple long
  39. filenames into a the data section of a new ar entry.
  40. config FEATURE_AR_CREATE
  41. bool "Support archive creation"
  42. default y
  43. depends on AR
  44. help
  45. This enables archive creation (-c and -r) with busybox ar.
  46. config UNCOMPRESS
  47. bool "uncompress (7.1 kb)"
  48. default n # ancient
  49. help
  50. uncompress is used to decompress archives created by compress.
  51. Not much used anymore, replaced by gzip/gunzip.
  52. config GUNZIP
  53. bool "gunzip (12 kb)"
  54. default y
  55. select FEATURE_GZIP_DECOMPRESS
  56. help
  57. gunzip is used to decompress archives created by gzip.
  58. You can use the '-t' option to test the integrity of
  59. an archive, without decompressing it.
  60. config ZCAT
  61. bool "zcat (25 kb)"
  62. default y
  63. select FEATURE_GZIP_DECOMPRESS
  64. help
  65. Alias to "gunzip -c".
  66. config FEATURE_GUNZIP_LONG_OPTIONS
  67. bool "Enable long options"
  68. default y
  69. depends on (GUNZIP || ZCAT) && LONG_OPTS
  70. config BUNZIP2
  71. bool "bunzip2 (8.8 kb)"
  72. default y
  73. select FEATURE_BZIP2_DECOMPRESS
  74. help
  75. bunzip2 is a compression utility using the Burrows-Wheeler block
  76. sorting text compression algorithm, and Huffman coding. Compression
  77. is generally considerably better than that achieved by more
  78. conventional LZ77/LZ78-based compressors, and approaches the
  79. performance of the PPM family of statistical compressors.
  80. Unless you have a specific application which requires bunzip2, you
  81. should probably say N here.
  82. config BZCAT
  83. bool "bzcat (8.8 kb)"
  84. default y
  85. select FEATURE_BZIP2_DECOMPRESS
  86. help
  87. Alias to "bunzip2 -c".
  88. config UNLZMA
  89. bool "unlzma (8.6 kb)"
  90. default y
  91. help
  92. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  93. compression algorithm, and range coding. Compression
  94. is generally considerably better than that achieved by the bzip2
  95. compressors.
  96. config LZCAT
  97. bool "lzcat (8.5 kb)"
  98. default y
  99. help
  100. Alias to "unlzma -c".
  101. config LZMA
  102. bool "lzma -d"
  103. default y
  104. help
  105. Enable this option if you want commands like "lzma -d" to work.
  106. IOW: you'll get lzma applet, but it will always require -d option.
  107. config UNXZ
  108. bool "unxz (13 kb)"
  109. default y
  110. help
  111. unxz is a unlzma successor.
  112. config XZCAT
  113. bool "xzcat (13 kb)"
  114. default y
  115. help
  116. Alias to "unxz -c".
  117. config XZ
  118. bool "xz -d"
  119. default y
  120. help
  121. Enable this option if you want commands like "xz -d" to work.
  122. IOW: you'll get xz applet, but it will always require -d option.
  123. config BZIP2
  124. bool "bzip2 (18 kb)"
  125. default y
  126. help
  127. bzip2 is a compression utility using the Burrows-Wheeler block
  128. sorting text compression algorithm, and Huffman coding. Compression
  129. is generally considerably better than that achieved by more
  130. conventional LZ77/LZ78-based compressors, and approaches the
  131. performance of the PPM family of statistical compressors.
  132. Unless you have a specific application which requires bzip2, you
  133. should probably say N here.
  134. config FEATURE_BZIP2_DECOMPRESS
  135. bool "Enable decompression"
  136. default y
  137. depends on BZIP2 || BUNZIP2 || BZCAT
  138. help
  139. Enable -d (--decompress) and -t (--test) options for bzip2.
  140. This will be automatically selected if bunzip2 or bzcat is
  141. enabled.
  142. config CPIO
  143. bool "cpio (14 kb)"
  144. default y
  145. help
  146. cpio is an archival utility program used to create, modify, and
  147. extract contents from archives.
  148. cpio has 110 bytes of overheads for every stored file.
  149. This implementation of cpio can extract cpio archives created in the
  150. "newc" or "crc" format.
  151. Unless you have a specific application which requires cpio, you
  152. should probably say N here.
  153. config FEATURE_CPIO_O
  154. bool "Support archive creation"
  155. default y
  156. depends on CPIO
  157. help
  158. This implementation of cpio can create cpio archives in the "newc"
  159. format only.
  160. config FEATURE_CPIO_P
  161. bool "Support passthrough mode"
  162. default y
  163. depends on FEATURE_CPIO_O
  164. help
  165. Passthrough mode. Rarely used.
  166. config DPKG
  167. bool "dpkg (44 kb)"
  168. default y
  169. select FEATURE_SEAMLESS_GZ
  170. help
  171. dpkg is a medium-level tool to install, build, remove and manage
  172. Debian packages.
  173. This implementation of dpkg has a number of limitations,
  174. you should use the official dpkg if possible.
  175. config DPKG_DEB
  176. bool "dpkg_deb"
  177. default y
  178. select FEATURE_SEAMLESS_GZ
  179. help
  180. dpkg-deb unpacks and provides information about Debian archives.
  181. This implementation of dpkg-deb cannot pack archives.
  182. Unless you have a specific application which requires dpkg-deb,
  183. say N here.
  184. config GZIP
  185. bool "gzip (19 kb)"
  186. default y
  187. help
  188. gzip is used to compress files.
  189. It's probably the most widely used UNIX compression program.
  190. config FEATURE_GZIP_LONG_OPTIONS
  191. bool "Enable long options"
  192. default y
  193. depends on GZIP && LONG_OPTS
  194. config GZIP_FAST
  195. int "Trade memory for speed (0:small,slow - 2:fast,big)"
  196. default 0
  197. range 0 2
  198. depends on GZIP
  199. help
  200. Enable big memory options for gzip.
  201. 0: small buffers, small hash-tables
  202. 1: larger buffers, larger hash-tables
  203. 2: larger buffers, largest hash-tables
  204. Larger models may give slightly better compression
  205. config FEATURE_GZIP_LEVELS
  206. bool "Enable compression levels"
  207. default n
  208. depends on GZIP
  209. help
  210. Enable support for compression levels 4-9. The default level
  211. is 6. If levels 1-3 are specified, 4 is used.
  212. If this option is not selected, -N options are ignored and -9
  213. is used.
  214. config FEATURE_GZIP_DECOMPRESS
  215. bool "Enable decompression"
  216. default y
  217. depends on GZIP || GUNZIP || ZCAT
  218. help
  219. Enable -d (--decompress) and -t (--test) options for gzip.
  220. This will be automatically selected if gunzip or zcat is
  221. enabled.
  222. config LZOP
  223. bool "lzop (13 kb)"
  224. default y
  225. help
  226. Lzop compression/decompresion.
  227. config UNLZOP
  228. bool "unlzop (13 kb)"
  229. default n # INCOMPAT: upstream lzop does not provide such tool
  230. help
  231. Lzop decompresion.
  232. config LZOPCAT
  233. bool "lzopcat (13 kb)"
  234. default n # INCOMPAT: upstream lzop does not provide such tool
  235. help
  236. Alias to "lzop -dc".
  237. config LZOP_COMPR_HIGH
  238. bool "lzop compression levels 7,8,9 (not very useful)"
  239. default n
  240. depends on LZOP || UNLZOP || LZOPCAT
  241. help
  242. High levels (7,8,9) of lzop compression. These levels
  243. are actually slower than gzip at equivalent compression ratios
  244. and take up 3.2K of code.
  245. config RPM
  246. bool "rpm (33 kb)"
  247. default y
  248. help
  249. Mini RPM applet - queries and extracts RPM packages.
  250. config RPM2CPIO
  251. bool "rpm2cpio (20 kb)"
  252. default y
  253. help
  254. Converts a RPM file into a CPIO archive.
  255. config TAR
  256. bool "tar (40 kb)"
  257. default y
  258. help
  259. tar is an archiving program. It's commonly used with gzip to
  260. create compressed archives. It's probably the most widely used
  261. UNIX archive program.
  262. config FEATURE_TAR_LONG_OPTIONS
  263. bool "Enable long options"
  264. default y
  265. depends on TAR && LONG_OPTS
  266. config FEATURE_TAR_CREATE
  267. bool "Enable -c (archive creation)"
  268. default y
  269. depends on TAR
  270. config FEATURE_TAR_AUTODETECT
  271. bool "Autodetect compressed tarballs"
  272. default y
  273. depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ)
  274. help
  275. With this option tar can automatically detect compressed
  276. tarballs. Currently it works only on files (not pipes etc).
  277. config FEATURE_TAR_FROM
  278. bool "Enable -X (exclude from) and -T (include from) options"
  279. default y
  280. depends on TAR
  281. help
  282. If you enable this option you'll be able to specify
  283. a list of files to include or exclude from an archive.
  284. config FEATURE_TAR_OLDGNU_COMPATIBILITY
  285. bool "Support old tar header format"
  286. default y
  287. depends on TAR || DPKG
  288. help
  289. This option is required to unpack archives created in
  290. the old GNU format; help to kill this old format by
  291. repacking your ancient archives with the new format.
  292. config FEATURE_TAR_OLDSUN_COMPATIBILITY
  293. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  294. default y
  295. depends on TAR || DPKG
  296. help
  297. This option is required to unpack archives created by some old
  298. version of Sun's tar (it was calculating checksum using signed
  299. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  300. tarballs still exist.
  301. config FEATURE_TAR_GNU_EXTENSIONS
  302. bool "Support GNU tar extensions (long filenames)"
  303. default y
  304. depends on TAR || DPKG
  305. config FEATURE_TAR_TO_COMMAND
  306. bool "Support writing to an external program (--to-command)"
  307. default y
  308. depends on TAR && FEATURE_TAR_LONG_OPTIONS
  309. help
  310. If you enable this option you'll be able to instruct tar to send
  311. the contents of each extracted file to the standard input of an
  312. external program.
  313. config FEATURE_TAR_UNAME_GNAME
  314. bool "Enable use of user and group names"
  315. default y
  316. depends on TAR
  317. help
  318. Enable use of user and group names in tar. This affects contents
  319. listings (-t) and preserving permissions when unpacking (-p).
  320. +200 bytes.
  321. config FEATURE_TAR_NOPRESERVE_TIME
  322. bool "Enable -m (do not preserve time) GNU option"
  323. default y
  324. depends on TAR
  325. config FEATURE_TAR_SELINUX
  326. bool "Support extracting SELinux labels"
  327. default n
  328. depends on TAR && SELINUX
  329. help
  330. With this option busybox supports restoring SELinux labels
  331. when extracting files from tar archives.
  332. config UNZIP
  333. bool "unzip (24 kb)"
  334. default y
  335. help
  336. unzip will list or extract files from a ZIP archive,
  337. commonly found on DOS/WIN systems. The default behavior
  338. (with no options) is to extract the archive into the
  339. current directory.
  340. config FEATURE_UNZIP_CDF
  341. bool "Read and use Central Directory data"
  342. default y
  343. depends on UNZIP
  344. help
  345. If you know that you only need to deal with simple
  346. ZIP files without deleted/updated files, SFX archives etc,
  347. you can reduce code size by unselecting this option.
  348. To support less trivial ZIPs, say Y.
  349. config FEATURE_UNZIP_BZIP2
  350. bool "Support compression method 12 (bzip2)"
  351. default y
  352. depends on FEATURE_UNZIP_CDF && DESKTOP
  353. config FEATURE_UNZIP_LZMA
  354. bool "Support compression method 14 (lzma)"
  355. default y
  356. depends on FEATURE_UNZIP_CDF && DESKTOP
  357. config FEATURE_UNZIP_XZ
  358. bool "Support compression method 95 (xz)"
  359. default y
  360. depends on FEATURE_UNZIP_CDF && DESKTOP
  361. config FEATURE_LZMA_FAST
  362. bool "Optimize lzma for speed"
  363. default n
  364. depends on UNLZMA || LZCAT || LZMA || FEATURE_SEAMLESS_LZMA
  365. help
  366. This option reduces decompression time by about 25% at the cost of
  367. a 1K bigger binary.
  368. endmenu