Config.in 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  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 BUSYBOX_FEATURE_SEAMLESS_XZ
  8. bool "Make tar, rpm, modprobe etc understand .xz data"
  9. default y
  10. help
  11. Make tar, rpm, modprobe etc understand .xz data.
  12. config BUSYBOX_FEATURE_SEAMLESS_LZMA
  13. bool "Make tar, rpm, modprobe etc understand .lzma data"
  14. default y
  15. help
  16. Make tar, rpm, modprobe etc understand .lzma data.
  17. config BUSYBOX_FEATURE_SEAMLESS_BZ2
  18. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  19. default y
  20. help
  21. Make tar, rpm, modprobe etc understand .bz2 data.
  22. config BUSYBOX_FEATURE_SEAMLESS_GZ
  23. bool "Make tar, rpm, modprobe etc understand .gz data"
  24. default y
  25. help
  26. Make tar, rpm, modprobe etc understand .gz data.
  27. config BUSYBOX_FEATURE_SEAMLESS_Z
  28. bool "tar, rpm, modprobe etc understand .Z data"
  29. default n
  30. help
  31. Make tar, rpm, modprobe etc understand .Z data.
  32. config BUSYBOX_AR
  33. bool "ar"
  34. depends on !BUSYBOX_DISABLE_AR
  35. default n # needs to be improved to be able to replace binutils ar
  36. help
  37. ar is an archival utility program used to create, modify, and
  38. extract contents from archives. An archive is a single file holding
  39. a collection of other files in a structure that makes it possible to
  40. retrieve the original individual files (called archive members).
  41. The original files' contents, mode (permissions), timestamp, owner,
  42. and group are preserved in the archive, and can be restored on
  43. extraction.
  44. The stored filename is limited to 15 characters. (for more information
  45. see long filename support).
  46. ar has 60 bytes of overheads for every stored file.
  47. This implementation of ar can extract archives, it cannot create or
  48. modify them.
  49. On an x86 system, the ar applet adds about 1K.
  50. Unless you have a specific application which requires ar, you should
  51. probably say N here.
  52. config BUSYBOX_FEATURE_AR_LONG_FILENAMES
  53. bool "Support for long filenames (not needed for debs)"
  54. default y
  55. depends on BUSYBOX_AR
  56. help
  57. By default the ar format can only store the first 15 characters
  58. of the filename, this option removes that limitation.
  59. It supports the GNU ar long filename method which moves multiple long
  60. filenames into a the data section of a new ar entry.
  61. config BUSYBOX_FEATURE_AR_CREATE
  62. bool "Support archive creation"
  63. default y
  64. depends on BUSYBOX_AR
  65. help
  66. This enables archive creation (-c and -r) with busybox ar.
  67. config BUSYBOX_BUNZIP2
  68. bool "bunzip2"
  69. depends on !BUSYBOX_DISABLE_BUNZIP2
  70. default n
  71. help
  72. bunzip2 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 bunzip2, you
  78. should probably say N here.
  79. config BUSYBOX_BZCAT
  80. bool "bzcat"
  81. default y
  82. help
  83. Alias to "bunzip2 -c".
  84. config BUSYBOX_BZIP2
  85. bool "bzip2"
  86. depends on !BUSYBOX_DISABLE_BZIP2
  87. default n
  88. help
  89. bzip2 is a compression utility using the Burrows-Wheeler block
  90. sorting text compression algorithm, and Huffman coding. Compression
  91. is generally considerably better than that achieved by more
  92. conventional LZ77/LZ78-based compressors, and approaches the
  93. performance of the PPM family of statistical compressors.
  94. Unless you have a specific application which requires bzip2, you
  95. should probably say N here.
  96. config BUSYBOX_CPIO
  97. bool "cpio"
  98. depends on !BUSYBOX_DISABLE_CPIO
  99. default n
  100. help
  101. cpio is an archival utility program used to create, modify, and
  102. extract contents from archives.
  103. cpio has 110 bytes of overheads for every stored file.
  104. This implementation of cpio can extract cpio archives created in the
  105. "newc" or "crc" format, it cannot create or modify them.
  106. Unless you have a specific application which requires cpio, you
  107. should probably say N here.
  108. config BUSYBOX_FEATURE_CPIO_O
  109. bool "Support for archive creation"
  110. default y
  111. depends on BUSYBOX_CPIO
  112. help
  113. This implementation of cpio can create cpio archives in the "newc"
  114. format only.
  115. config BUSYBOX_FEATURE_CPIO_P
  116. bool "Support for passthrough mode"
  117. default y
  118. depends on BUSYBOX_FEATURE_CPIO_O
  119. help
  120. Passthrough mode. Rarely used.
  121. config BUSYBOX_DPKG
  122. bool "dpkg"
  123. default n
  124. select BUSYBOX_FEATURE_SEAMLESS_GZ
  125. help
  126. dpkg is a medium-level tool to install, build, remove and manage
  127. Debian packages.
  128. This implementation of dpkg has a number of limitations,
  129. you should use the official dpkg if possible.
  130. config BUSYBOX_DPKG_DEB
  131. bool "dpkg_deb"
  132. default n
  133. select BUSYBOX_FEATURE_SEAMLESS_GZ
  134. help
  135. dpkg-deb unpacks and provides information about Debian archives.
  136. This implementation of dpkg-deb cannot pack archives.
  137. Unless you have a specific application which requires dpkg-deb,
  138. say N here.
  139. config BUSYBOX_FEATURE_DPKG_DEB_EXTRACT_ONLY
  140. bool "Extract only (-x)"
  141. default n
  142. depends on BUSYBOX_DPKG_DEB
  143. help
  144. This reduces dpkg-deb to the equivalent of
  145. "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
  146. of the extra dpkg-deb, ar or tar options are needed, they are linked
  147. to internally.
  148. config BUSYBOX_GUNZIP
  149. bool "gunzip"
  150. default y
  151. help
  152. gunzip is used to decompress archives created by gzip.
  153. You can use the `-t' option to test the integrity of
  154. an archive, without decompressing it.
  155. config BUSYBOX_ZCAT
  156. bool "zcat"
  157. default y
  158. help
  159. Alias to "gunzip -c".
  160. config BUSYBOX_FEATURE_GUNZIP_LONG_OPTIONS
  161. bool "Enable long options"
  162. default y
  163. depends on BUSYBOX_GUNZIP && BUSYBOX_LONG_OPTS
  164. help
  165. Enable use of long options.
  166. config BUSYBOX_GZIP
  167. bool "gzip"
  168. default y
  169. help
  170. gzip is used to compress files.
  171. It's probably the most widely used UNIX compression program.
  172. config BUSYBOX_FEATURE_GZIP_LONG_OPTIONS
  173. bool "Enable long options"
  174. default y
  175. depends on BUSYBOX_GZIP && BUSYBOX_LONG_OPTS
  176. help
  177. Enable use of long options, increases size by about 106 Bytes
  178. config BUSYBOX_GZIP_FAST
  179. int "Trade memory for gzip speed (0:small,slow - 2:fast,big)"
  180. default 0
  181. range 0 2
  182. depends on BUSYBOX_GZIP
  183. help
  184. Enable big memory options for gzip.
  185. 0: small buffers, small hash-tables
  186. 1: larger buffers, larger hash-tables
  187. 2: larger buffers, largest hash-tables
  188. Larger models may give slightly better compression
  189. config BUSYBOX_LZOP
  190. bool "lzop"
  191. default n
  192. help
  193. Lzop compression/decompresion.
  194. config BUSYBOX_UNLZOP
  195. bool "unlzop"
  196. default n
  197. help
  198. Lzop decompresion.
  199. config BUSYBOX_LZOPCAT
  200. bool "lzopcat"
  201. default n
  202. help
  203. Alias to "unlzop -c".
  204. config BUSYBOX_LZOP_COMPR_HIGH
  205. bool "lzop compression levels 7,8,9 (not very useful)"
  206. default n
  207. depends on BUSYBOX_LZOP
  208. help
  209. High levels (7,8,9) of lzop compression. These levels
  210. are actually slower than gzip at equivalent compression ratios
  211. and take up 3.2K of code.
  212. config BUSYBOX_FEATURE_GZIP_LEVELS
  213. bool "Enable compression levels"
  214. default n
  215. depends on BUSYBOX_GZIP
  216. help
  217. Enable support for compression levels 4-9. The default level
  218. is 6. If levels 1-3 are specified, 4 is used.
  219. If this option is not selected, -N options are ignored and -9
  220. is used.
  221. config BUSYBOX_IPKG
  222. bool "ipkg"
  223. default n
  224. help
  225. ipkg is the itsy package management system.
  226. config BUSYBOX_RPM2CPIO
  227. bool "rpm2cpio"
  228. depends on !BUSYBOX_DISABLE_RPM
  229. default n
  230. help
  231. Converts a RPM file into a CPIO archive.
  232. config BUSYBOX_RPM
  233. bool "rpm"
  234. depends on !BUSYBOX_DISABLE_RPM
  235. default n
  236. help
  237. Mini RPM applet - queries and extracts RPM packages.
  238. config BUSYBOX_TAR
  239. bool "tar"
  240. depends on !BUSYBOX_DISABLE_TAR
  241. default y
  242. help
  243. tar is an archiving program. It's commonly used with gzip to
  244. create compressed archives. It's probably the most widely used
  245. UNIX archive program.
  246. config BUSYBOX_FEATURE_TAR_CREATE
  247. bool "Enable archive creation"
  248. default y
  249. depends on BUSYBOX_TAR
  250. help
  251. If you enable this option you'll be able to create
  252. tar archives using the `-c' option.
  253. config BUSYBOX_FEATURE_TAR_AUTODETECT
  254. bool "Autodetect compressed tarballs"
  255. default y
  256. depends on BUSYBOX_TAR && (BUSYBOX_FEATURE_SEAMLESS_Z || BUSYBOX_FEATURE_SEAMLESS_GZ || BUSYBOX_FEATURE_SEAMLESS_BZ2 || BUSYBOX_FEATURE_SEAMLESS_LZMA || BUSYBOX_FEATURE_SEAMLESS_XZ)
  257. help
  258. With this option tar can automatically detect compressed
  259. tarballs. Currently it works only on files (not pipes etc).
  260. config BUSYBOX_FEATURE_TAR_FROM
  261. bool "Enable -X (exclude from) and -T (include from) options)"
  262. default y
  263. depends on BUSYBOX_TAR
  264. help
  265. If you enable this option you'll be able to specify
  266. a list of files to include or exclude from an archive.
  267. config BUSYBOX_FEATURE_TAR_OLDGNU_COMPATIBILITY
  268. bool "Support for old tar header format"
  269. default y
  270. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  271. help
  272. This option is required to unpack archives created in
  273. the old GNU format; help to kill this old format by
  274. repacking your ancient archives with the new format.
  275. config BUSYBOX_FEATURE_TAR_OLDSUN_COMPATIBILITY
  276. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  277. default n
  278. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  279. help
  280. This option is required to unpack archives created by some old
  281. version of Sun's tar (it was calculating checksum using signed
  282. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  283. tarballs still exist.
  284. config BUSYBOX_FEATURE_TAR_GNU_EXTENSIONS
  285. bool "Support for GNU tar extensions (long filenames)"
  286. default y
  287. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  288. help
  289. With this option busybox supports GNU long filenames and
  290. linknames.
  291. config BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  292. bool "Enable long options"
  293. default y
  294. depends on BUSYBOX_TAR && BUSYBOX_LONG_OPTS
  295. help
  296. Enable use of long options, increases size by about 400 Bytes
  297. config BUSYBOX_FEATURE_TAR_TO_COMMAND
  298. bool "Support for writing to an external program"
  299. default y
  300. depends on BUSYBOX_TAR && BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  301. help
  302. If you enable this option you'll be able to instruct tar to send
  303. the contents of each extracted file to the standard input of an
  304. external program.
  305. config BUSYBOX_FEATURE_TAR_UNAME_GNAME
  306. bool "Enable use of user and group names"
  307. default y
  308. depends on BUSYBOX_TAR
  309. help
  310. Enables use of user and group names in tar. This affects contents
  311. listings (-t) and preserving permissions when unpacking (-p).
  312. +200 bytes.
  313. config BUSYBOX_FEATURE_TAR_NOPRESERVE_TIME
  314. bool "Enable -m (do not preserve time) option"
  315. default y
  316. depends on BUSYBOX_TAR
  317. help
  318. With this option busybox supports GNU tar -m
  319. (do not preserve time) option.
  320. config BUSYBOX_FEATURE_TAR_SELINUX
  321. bool "Support for extracting SELinux labels"
  322. default n
  323. depends on BUSYBOX_TAR && BUSYBOX_SELINUX
  324. help
  325. With this option busybox supports restoring SELinux labels
  326. when extracting files from tar archives.
  327. config BUSYBOX_UNCOMPRESS
  328. bool "uncompress"
  329. default n
  330. help
  331. uncompress is used to decompress archives created by compress.
  332. Not much used anymore, replaced by gzip/gunzip.
  333. config BUSYBOX_UNLZMA
  334. bool "unlzma"
  335. default n
  336. help
  337. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  338. compression algorithm, and range coding. Compression
  339. is generally considerably better than that achieved by the bzip2
  340. compressors.
  341. The BusyBox unlzma applet is limited to decompression only.
  342. On an x86 system, this applet adds about 4K.
  343. config BUSYBOX_FEATURE_LZMA_FAST
  344. bool "Optimize unlzma for speed"
  345. default n
  346. depends on BUSYBOX_UNLZMA || BUSYBOX_LZCAT || BUSYBOX_LZMA
  347. help
  348. This option reduces decompression time by about 25% at the cost of
  349. a 1K bigger binary.
  350. config BUSYBOX_LZCAT
  351. bool "lzcat"
  352. default n
  353. help
  354. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  355. compression algorithm, and range coding. Compression
  356. is generally considerably better than that achieved by the bzip2
  357. compressors.
  358. The BusyBox unlzma applet is limited to decompression only.
  359. On an x86 system, this applet adds about 4K.
  360. config BUSYBOX_LZMA
  361. bool "Provide lzma alias which supports only unpacking"
  362. default n
  363. help
  364. Enable this option if you want commands like "lzma -d" to work.
  365. IOW: you'll get lzma applet, but it will always require -d option.
  366. config BUSYBOX_UNXZ
  367. bool "unxz"
  368. depends on !BUSYBOX_DISABLE_UNXZ
  369. default n
  370. help
  371. unxz is a unlzma successor.
  372. config BUSYBOX_XZCAT
  373. bool "xzcat"
  374. default n
  375. help
  376. Alias to "unxz -c".
  377. config BUSYBOX_XZ
  378. bool "Provide xz alias which supports only unpacking"
  379. depends on !BUSYBOX_DISABLE_XZ
  380. default n
  381. help
  382. Enable this option if you want commands like "xz -d" to work.
  383. IOW: you'll get xz applet, but it will always require -d option.
  384. config BUSYBOX_UNZIP
  385. bool "unzip"
  386. depends on !BUSYBOX_DISABLE_UNZIP
  387. default n
  388. help
  389. unzip will list or extract files from a ZIP archive,
  390. commonly found on DOS/WIN systems. The default behavior
  391. (with no options) is to extract the archive into the
  392. current directory. Use the `-d' option to extract to a
  393. directory of your choice.
  394. config BUSYBOX_FEATURE_UNZIP_CDF
  395. bool "Read and use Central Directory data"
  396. default y
  397. depends on BUSYBOX_UNZIP
  398. help
  399. If you know that you only need to deal with simple
  400. ZIP files without deleted/updated files, SFX archives etc,
  401. you can reduce code size by unselecting this option.
  402. To support less trivial ZIPs, say Y.
  403. config BUSYBOX_FEATURE_UNZIP_BZIP2
  404. bool "Support compression method 12 (bzip2)"
  405. default y
  406. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  407. config BUSYBOX_FEATURE_UNZIP_LZMA
  408. bool "Support compression method 14 (lzma)"
  409. default y
  410. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  411. config BUSYBOX_FEATURE_UNZIP_XZ
  412. bool "Support compression method 95 (xz)"
  413. default y
  414. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  415. config BUSYBOX_FEATURE_LZMA_FAST
  416. bool "Optimize lzma for speed"
  417. default n
  418. depends on BUSYBOX_UNLZMA || BUSYBOX_LZCAT || BUSYBOX_LZMA || BUSYBOX_FEATURE_SEAMLESS_LZMA
  419. help
  420. This option reduces decompression time by about 25% at the cost of
  421. a 1K bigger binary.
  422. endmenu