Config.in 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457
  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 docs/Kconfig-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. config BUSYBOX_FEATURE_SEAMLESS_LZMA
  11. bool "Make tar, rpm, modprobe etc understand .lzma data"
  12. default y
  13. config BUSYBOX_FEATURE_SEAMLESS_BZ2
  14. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  15. default y
  16. config BUSYBOX_FEATURE_SEAMLESS_GZ
  17. bool "Make tar, rpm, modprobe etc understand .gz data"
  18. default y
  19. config BUSYBOX_FEATURE_SEAMLESS_Z
  20. bool "Make tar, rpm, modprobe etc understand .Z data"
  21. default n # it is ancient
  22. config BUSYBOX_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 BUSYBOX_FEATURE_AR_LONG_FILENAMES
  32. bool "Support long filenames (not needed for debs)"
  33. default y
  34. depends on BUSYBOX_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 BUSYBOX_FEATURE_AR_CREATE
  41. bool "Support archive creation"
  42. default y
  43. depends on BUSYBOX_AR
  44. help
  45. This enables archive creation (-c and -r) with busybox ar.
  46. config BUSYBOX_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 BUSYBOX_GUNZIP
  53. bool "gunzip (11 kb)"
  54. default y
  55. select BUSYBOX_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 BUSYBOX_ZCAT
  61. bool "zcat (24 kb)"
  62. default y
  63. select BUSYBOX_FEATURE_GZIP_DECOMPRESS
  64. help
  65. Alias to "gunzip -c".
  66. config BUSYBOX_FEATURE_GUNZIP_LONG_OPTIONS
  67. bool "Enable long options"
  68. default y
  69. depends on (BUSYBOX_GUNZIP || BUSYBOX_ZCAT) && BUSYBOX_LONG_OPTS
  70. config BUSYBOX_BUNZIP2
  71. bool "bunzip2 (8.7 kb)"
  72. default y
  73. select BUSYBOX_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 BUSYBOX_BZCAT
  83. bool "bzcat (8.7 kb)"
  84. default y
  85. select BUSYBOX_FEATURE_BZIP2_DECOMPRESS
  86. help
  87. Alias to "bunzip2 -c".
  88. config BUSYBOX_UNLZMA
  89. bool "unlzma (7.5 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 BUSYBOX_LZCAT
  97. bool "lzcat (7.5 kb)"
  98. default y
  99. help
  100. Alias to "unlzma -c".
  101. config BUSYBOX_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 BUSYBOX_UNXZ
  108. bool "unxz (13 kb)"
  109. default y
  110. help
  111. unxz is a unlzma successor.
  112. config BUSYBOX_XZCAT
  113. bool "xzcat (13 kb)"
  114. default y
  115. help
  116. Alias to "unxz -c".
  117. config BUSYBOX_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 BUSYBOX_BZIP2
  124. bool "bzip2 (16 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 BUSYBOX_BZIP2_SMALL
  135. int "Trade bytes for speed (0:fast, 9:small)"
  136. default 8 # all "fast or small" options default to small
  137. range 0 9
  138. depends on BUSYBOX_BZIP2
  139. help
  140. Trade code size versus speed.
  141. Approximate values with gcc-6.3.0 "bzip -9" compressing
  142. linux-4.15.tar were:
  143. value time (sec) code size (386)
  144. 9 (smallest) 70.11 7687
  145. 8 67.93 8091
  146. 7 67.88 8405
  147. 6 67.78 8624
  148. 5 67.05 9427
  149. 4-0 (fastest) 64.14 12083
  150. config BUSYBOX_FEATURE_BZIP2_DECOMPRESS
  151. bool "Enable decompression"
  152. default y
  153. depends on BUSYBOX_BZIP2 || BUSYBOX_BUNZIP2 || BUSYBOX_BZCAT
  154. help
  155. Enable -d (--decompress) and -t (--test) options for bzip2.
  156. This will be automatically selected if bunzip2 or bzcat is
  157. enabled.
  158. config BUSYBOX_CPIO
  159. bool "cpio (15 kb)"
  160. default y
  161. help
  162. cpio is an archival utility program used to create, modify, and
  163. extract contents from archives.
  164. cpio has 110 bytes of overheads for every stored file.
  165. This implementation of cpio can extract cpio archives created in the
  166. "newc" or "crc" format.
  167. Unless you have a specific application which requires cpio, you
  168. should probably say N here.
  169. config BUSYBOX_FEATURE_CPIO_O
  170. bool "Support archive creation"
  171. default y
  172. depends on BUSYBOX_CPIO
  173. help
  174. This implementation of cpio can create cpio archives in the "newc"
  175. format only.
  176. config BUSYBOX_FEATURE_CPIO_P
  177. bool "Support passthrough mode"
  178. default y
  179. depends on BUSYBOX_FEATURE_CPIO_O
  180. help
  181. Passthrough mode. Rarely used.
  182. config BUSYBOX_FEATURE_CPIO_IGNORE_DEVNO
  183. bool "Support --ignore-devno like GNU cpio"
  184. default y
  185. depends on BUSYBOX_FEATURE_CPIO_O && BUSYBOX_LONG_OPTS
  186. help
  187. Optionally ignore device numbers when creating archives.
  188. config BUSYBOX_FEATURE_CPIO_RENUMBER_INODES
  189. bool "Support --renumber-inodes like GNU cpio"
  190. default y
  191. depends on BUSYBOX_FEATURE_CPIO_O && BUSYBOX_LONG_OPTS
  192. help
  193. Optionally renumber inodes when creating archives.
  194. config BUSYBOX_DPKG
  195. bool "dpkg (43 kb)"
  196. default y
  197. select BUSYBOX_FEATURE_SEAMLESS_GZ
  198. help
  199. dpkg is a medium-level tool to install, build, remove and manage
  200. Debian packages.
  201. This implementation of dpkg has a number of limitations,
  202. you should use the official dpkg if possible.
  203. config BUSYBOX_DPKG_DEB
  204. bool "dpkg-deb (30 kb)"
  205. default y
  206. select BUSYBOX_FEATURE_SEAMLESS_GZ
  207. help
  208. dpkg-deb unpacks and provides information about Debian archives.
  209. This implementation of dpkg-deb cannot pack archives.
  210. Unless you have a specific application which requires dpkg-deb,
  211. say N here.
  212. config BUSYBOX_GZIP
  213. bool "gzip (17 kb)"
  214. default y
  215. help
  216. gzip is used to compress files.
  217. It's probably the most widely used UNIX compression program.
  218. config BUSYBOX_FEATURE_GZIP_LONG_OPTIONS
  219. bool "Enable long options"
  220. default y
  221. depends on BUSYBOX_GZIP && BUSYBOX_LONG_OPTS
  222. config BUSYBOX_GZIP_FAST
  223. int "Trade memory for speed (0:small,slow - 2:fast,big)"
  224. default 0
  225. range 0 2
  226. depends on BUSYBOX_GZIP
  227. help
  228. Enable big memory options for gzip.
  229. 0: small buffers, small hash-tables
  230. 1: larger buffers, larger hash-tables
  231. 2: larger buffers, largest hash-tables
  232. Larger models may give slightly better compression
  233. config BUSYBOX_FEATURE_GZIP_LEVELS
  234. bool "Enable compression levels"
  235. default n
  236. depends on BUSYBOX_GZIP
  237. help
  238. Enable support for compression levels 4-9. The default level
  239. is 6. If levels 1-3 are specified, 4 is used.
  240. If this option is not selected, -N options are ignored and -6
  241. is used.
  242. config BUSYBOX_FEATURE_GZIP_DECOMPRESS
  243. bool "Enable decompression"
  244. default y
  245. depends on BUSYBOX_GZIP || BUSYBOX_GUNZIP || BUSYBOX_ZCAT
  246. help
  247. Enable -d (--decompress) and -t (--test) options for gzip.
  248. This will be automatically selected if gunzip or zcat is
  249. enabled.
  250. config BUSYBOX_IPKG
  251. bool "ipkg"
  252. default n
  253. help
  254. ipkg is a tool to install, build, remove and manage
  255. packages.
  256. config BUSYBOX_LZOP
  257. bool "lzop (12 kb)"
  258. default y
  259. help
  260. Lzop compression/decompresion.
  261. config BUSYBOX_UNLZOP
  262. bool "unlzop (13 kb)"
  263. default n # INCOMPAT: upstream lzop does not provide such tool
  264. help
  265. Lzop decompresion.
  266. config BUSYBOX_LZOPCAT
  267. bool "lzopcat (13 kb)"
  268. default n # INCOMPAT: upstream lzop does not provide such tool
  269. help
  270. Alias to "lzop -dc".
  271. config BUSYBOX_LZOP_COMPR_HIGH
  272. bool "lzop compression levels 7,8,9 (not very useful)"
  273. default n
  274. depends on BUSYBOX_LZOP || BUSYBOX_UNLZOP || BUSYBOX_LZOPCAT
  275. help
  276. High levels (7,8,9) of lzop compression. These levels
  277. are actually slower than gzip at equivalent compression ratios
  278. and take up 3.2K of code.
  279. config BUSYBOX_RPM
  280. bool "rpm (32 kb)"
  281. default y
  282. help
  283. Mini RPM applet - queries and extracts RPM packages.
  284. config BUSYBOX_RPM2CPIO
  285. bool "rpm2cpio (21 kb)"
  286. default y
  287. help
  288. Converts a RPM file into a CPIO archive.
  289. config BUSYBOX_TAR
  290. bool "tar (39 kb)"
  291. default y
  292. help
  293. tar is an archiving program. It's commonly used with gzip to
  294. create compressed archives. It's probably the most widely used
  295. UNIX archive program.
  296. config BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  297. bool "Enable long options"
  298. default y
  299. depends on BUSYBOX_TAR && BUSYBOX_LONG_OPTS
  300. config BUSYBOX_FEATURE_TAR_CREATE
  301. bool "Enable -c (archive creation)"
  302. default y
  303. depends on BUSYBOX_TAR
  304. config BUSYBOX_FEATURE_TAR_AUTODETECT
  305. bool "Autodetect compressed tarballs"
  306. default y
  307. depends on BUSYBOX_TAR && (BUSYBOX_FEATURE_SEAMLESS_Z || BUSYBOX_FEATURE_SEAMLESS_GZ || BUSYBOX_FEATURE_SEAMLESS_BZ2 || BUSYBOX_FEATURE_SEAMLESS_LZMA || BUSYBOX_FEATURE_SEAMLESS_XZ)
  308. help
  309. With this option tar can automatically detect compressed
  310. tarballs. Currently it works only on files (not pipes etc).
  311. config BUSYBOX_FEATURE_TAR_FROM
  312. bool "Enable -X (exclude from) and -T (include from) options"
  313. default y
  314. depends on BUSYBOX_TAR
  315. help
  316. If you enable this option you'll be able to specify
  317. a list of files to include or exclude from an archive.
  318. config BUSYBOX_FEATURE_TAR_OLDGNU_COMPATIBILITY
  319. bool "Support old tar header format"
  320. default y
  321. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  322. help
  323. This option is required to unpack archives created in
  324. the old GNU format; help to kill this old format by
  325. repacking your ancient archives with the new format.
  326. config BUSYBOX_FEATURE_TAR_OLDSUN_COMPATIBILITY
  327. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  328. default y
  329. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  330. help
  331. This option is required to unpack archives created by some old
  332. version of Sun's tar (it was calculating checksum using signed
  333. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  334. tarballs still exist.
  335. config BUSYBOX_FEATURE_TAR_GNU_EXTENSIONS
  336. bool "Support GNU tar extensions (long filenames)"
  337. default y
  338. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  339. config BUSYBOX_FEATURE_TAR_TO_COMMAND
  340. bool "Support writing to an external program (--to-command)"
  341. default y
  342. depends on BUSYBOX_TAR && BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  343. help
  344. If you enable this option you'll be able to instruct tar to send
  345. the contents of each extracted file to the standard input of an
  346. external program.
  347. config BUSYBOX_FEATURE_TAR_UNAME_GNAME
  348. bool "Enable use of user and group names"
  349. default y
  350. depends on BUSYBOX_TAR
  351. help
  352. Enable use of user and group names in tar. This affects contents
  353. listings (-t) and preserving permissions when unpacking (-p).
  354. +200 bytes.
  355. config BUSYBOX_FEATURE_TAR_NOPRESERVE_TIME
  356. bool "Enable -m (do not preserve time) GNU option"
  357. default y
  358. depends on BUSYBOX_TAR
  359. config BUSYBOX_FEATURE_TAR_SELINUX
  360. bool "Support extracting SELinux labels"
  361. default n
  362. depends on BUSYBOX_TAR && BUSYBOX_SELINUX
  363. help
  364. With this option busybox supports restoring SELinux labels
  365. when extracting files from tar archives.
  366. config BUSYBOX_UNZIP
  367. bool "unzip (26 kb)"
  368. default y
  369. help
  370. unzip will list or extract files from a ZIP archive,
  371. commonly found on DOS/WIN systems. The default behavior
  372. (with no options) is to extract the archive into the
  373. current directory.
  374. config BUSYBOX_FEATURE_UNZIP_CDF
  375. bool "Read and use Central Directory data"
  376. default y
  377. depends on BUSYBOX_UNZIP
  378. help
  379. If you know that you only need to deal with simple
  380. ZIP files without deleted/updated files, SFX archives etc,
  381. you can reduce code size by unselecting this option.
  382. To support less trivial ZIPs, say Y.
  383. config BUSYBOX_FEATURE_UNZIP_BZIP2
  384. bool "Support compression method 12 (bzip2)"
  385. default y
  386. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  387. config BUSYBOX_FEATURE_UNZIP_LZMA
  388. bool "Support compression method 14 (lzma)"
  389. default y
  390. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  391. config BUSYBOX_FEATURE_UNZIP_XZ
  392. bool "Support compression method 95 (xz)"
  393. default y
  394. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  395. config BUSYBOX_FEATURE_LZMA_FAST
  396. bool "Optimize lzma for speed"
  397. default n
  398. depends on BUSYBOX_UNLZMA || BUSYBOX_LZCAT || BUSYBOX_LZMA || BUSYBOX_FEATURE_SEAMLESS_LZMA
  399. help
  400. This option reduces decompression time by about 25% at the cost of
  401. a 1K bigger binary.
  402. endmenu