Config.in 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  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_DPKG
  183. bool "dpkg (43 kb)"
  184. default y
  185. select BUSYBOX_FEATURE_SEAMLESS_GZ
  186. help
  187. dpkg is a medium-level tool to install, build, remove and manage
  188. Debian packages.
  189. This implementation of dpkg has a number of limitations,
  190. you should use the official dpkg if possible.
  191. config BUSYBOX_DPKG_DEB
  192. bool "dpkg-deb (30 kb)"
  193. default y
  194. select BUSYBOX_FEATURE_SEAMLESS_GZ
  195. help
  196. dpkg-deb unpacks and provides information about Debian archives.
  197. This implementation of dpkg-deb cannot pack archives.
  198. Unless you have a specific application which requires dpkg-deb,
  199. say N here.
  200. config BUSYBOX_GZIP
  201. bool "gzip (17 kb)"
  202. default y
  203. help
  204. gzip is used to compress files.
  205. It's probably the most widely used UNIX compression program.
  206. config BUSYBOX_FEATURE_GZIP_LONG_OPTIONS
  207. bool "Enable long options"
  208. default y
  209. depends on BUSYBOX_GZIP && BUSYBOX_LONG_OPTS
  210. config BUSYBOX_GZIP_FAST
  211. int "Trade memory for speed (0:small,slow - 2:fast,big)"
  212. default 0
  213. range 0 2
  214. depends on BUSYBOX_GZIP
  215. help
  216. Enable big memory options for gzip.
  217. 0: small buffers, small hash-tables
  218. 1: larger buffers, larger hash-tables
  219. 2: larger buffers, largest hash-tables
  220. Larger models may give slightly better compression
  221. config BUSYBOX_FEATURE_GZIP_LEVELS
  222. bool "Enable compression levels"
  223. default n
  224. depends on BUSYBOX_GZIP
  225. help
  226. Enable support for compression levels 4-9. The default level
  227. is 6. If levels 1-3 are specified, 4 is used.
  228. If this option is not selected, -N options are ignored and -6
  229. is used.
  230. config BUSYBOX_FEATURE_GZIP_DECOMPRESS
  231. bool "Enable decompression"
  232. default y
  233. depends on BUSYBOX_GZIP || BUSYBOX_GUNZIP || BUSYBOX_ZCAT
  234. help
  235. Enable -d (--decompress) and -t (--test) options for gzip.
  236. This will be automatically selected if gunzip or zcat is
  237. enabled.
  238. config BUSYBOX_IPKG
  239. bool "ipkg"
  240. default n
  241. help
  242. ipkg is a tool to install, build, remove and manage
  243. packages.
  244. config BUSYBOX_LZOP
  245. bool "lzop (12 kb)"
  246. default y
  247. help
  248. Lzop compression/decompresion.
  249. config BUSYBOX_UNLZOP
  250. bool "unlzop (13 kb)"
  251. default n # INCOMPAT: upstream lzop does not provide such tool
  252. help
  253. Lzop decompresion.
  254. config BUSYBOX_LZOPCAT
  255. bool "lzopcat (13 kb)"
  256. default n # INCOMPAT: upstream lzop does not provide such tool
  257. help
  258. Alias to "lzop -dc".
  259. config BUSYBOX_LZOP_COMPR_HIGH
  260. bool "lzop compression levels 7,8,9 (not very useful)"
  261. default n
  262. depends on BUSYBOX_LZOP || BUSYBOX_UNLZOP || BUSYBOX_LZOPCAT
  263. help
  264. High levels (7,8,9) of lzop compression. These levels
  265. are actually slower than gzip at equivalent compression ratios
  266. and take up 3.2K of code.
  267. config BUSYBOX_RPM
  268. bool "rpm (32 kb)"
  269. default y
  270. help
  271. Mini RPM applet - queries and extracts RPM packages.
  272. config BUSYBOX_RPM2CPIO
  273. bool "rpm2cpio (21 kb)"
  274. default y
  275. help
  276. Converts a RPM file into a CPIO archive.
  277. config BUSYBOX_TAR
  278. bool "tar (39 kb)"
  279. default y
  280. help
  281. tar is an archiving program. It's commonly used with gzip to
  282. create compressed archives. It's probably the most widely used
  283. UNIX archive program.
  284. config BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  285. bool "Enable long options"
  286. default y
  287. depends on BUSYBOX_TAR && BUSYBOX_LONG_OPTS
  288. config BUSYBOX_FEATURE_TAR_CREATE
  289. bool "Enable -c (archive creation)"
  290. default y
  291. depends on BUSYBOX_TAR
  292. config BUSYBOX_FEATURE_TAR_AUTODETECT
  293. bool "Autodetect compressed tarballs"
  294. default y
  295. depends on BUSYBOX_TAR && (BUSYBOX_FEATURE_SEAMLESS_Z || BUSYBOX_FEATURE_SEAMLESS_GZ || BUSYBOX_FEATURE_SEAMLESS_BZ2 || BUSYBOX_FEATURE_SEAMLESS_LZMA || BUSYBOX_FEATURE_SEAMLESS_XZ)
  296. help
  297. With this option tar can automatically detect compressed
  298. tarballs. Currently it works only on files (not pipes etc).
  299. config BUSYBOX_FEATURE_TAR_FROM
  300. bool "Enable -X (exclude from) and -T (include from) options"
  301. default y
  302. depends on BUSYBOX_TAR
  303. help
  304. If you enable this option you'll be able to specify
  305. a list of files to include or exclude from an archive.
  306. config BUSYBOX_FEATURE_TAR_OLDGNU_COMPATIBILITY
  307. bool "Support old tar header format"
  308. default y
  309. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  310. help
  311. This option is required to unpack archives created in
  312. the old GNU format; help to kill this old format by
  313. repacking your ancient archives with the new format.
  314. config BUSYBOX_FEATURE_TAR_OLDSUN_COMPATIBILITY
  315. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  316. default y
  317. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  318. help
  319. This option is required to unpack archives created by some old
  320. version of Sun's tar (it was calculating checksum using signed
  321. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  322. tarballs still exist.
  323. config BUSYBOX_FEATURE_TAR_GNU_EXTENSIONS
  324. bool "Support GNU tar extensions (long filenames)"
  325. default y
  326. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  327. config BUSYBOX_FEATURE_TAR_TO_COMMAND
  328. bool "Support writing to an external program (--to-command)"
  329. default y
  330. depends on BUSYBOX_TAR && BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  331. help
  332. If you enable this option you'll be able to instruct tar to send
  333. the contents of each extracted file to the standard input of an
  334. external program.
  335. config BUSYBOX_FEATURE_TAR_UNAME_GNAME
  336. bool "Enable use of user and group names"
  337. default y
  338. depends on BUSYBOX_TAR
  339. help
  340. Enable use of user and group names in tar. This affects contents
  341. listings (-t) and preserving permissions when unpacking (-p).
  342. +200 bytes.
  343. config BUSYBOX_FEATURE_TAR_NOPRESERVE_TIME
  344. bool "Enable -m (do not preserve time) GNU option"
  345. default y
  346. depends on BUSYBOX_TAR
  347. config BUSYBOX_FEATURE_TAR_SELINUX
  348. bool "Support extracting SELinux labels"
  349. default n
  350. depends on BUSYBOX_TAR && BUSYBOX_SELINUX
  351. help
  352. With this option busybox supports restoring SELinux labels
  353. when extracting files from tar archives.
  354. config BUSYBOX_UNZIP
  355. bool "unzip (26 kb)"
  356. default y
  357. help
  358. unzip will list or extract files from a ZIP archive,
  359. commonly found on DOS/WIN systems. The default behavior
  360. (with no options) is to extract the archive into the
  361. current directory.
  362. config BUSYBOX_FEATURE_UNZIP_CDF
  363. bool "Read and use Central Directory data"
  364. default y
  365. depends on BUSYBOX_UNZIP
  366. help
  367. If you know that you only need to deal with simple
  368. ZIP files without deleted/updated files, SFX archives etc,
  369. you can reduce code size by unselecting this option.
  370. To support less trivial ZIPs, say Y.
  371. config BUSYBOX_FEATURE_UNZIP_BZIP2
  372. bool "Support compression method 12 (bzip2)"
  373. default y
  374. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  375. config BUSYBOX_FEATURE_UNZIP_LZMA
  376. bool "Support compression method 14 (lzma)"
  377. default y
  378. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  379. config BUSYBOX_FEATURE_UNZIP_XZ
  380. bool "Support compression method 95 (xz)"
  381. default y
  382. depends on BUSYBOX_FEATURE_UNZIP_CDF && BUSYBOX_DESKTOP
  383. config BUSYBOX_FEATURE_LZMA_FAST
  384. bool "Optimize lzma for speed"
  385. default n
  386. depends on BUSYBOX_UNLZMA || BUSYBOX_LZCAT || BUSYBOX_LZMA || BUSYBOX_FEATURE_SEAMLESS_LZMA
  387. help
  388. This option reduces decompression time by about 25% at the cost of
  389. a 1K bigger binary.
  390. endmenu