1
0

Config.in 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  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_CONFIG_FEATURE_SEAMLESS_XZ
  8. bool "Make tar, rpm, modprobe etc understand .xz data"
  9. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_XZ
  10. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA
  11. bool "Make tar, rpm, modprobe etc understand .lzma data"
  12. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_LZMA
  13. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2
  14. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  15. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_BZ2
  16. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
  17. bool "Make tar, rpm, modprobe etc understand .gz data"
  18. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_GZ
  19. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z
  20. bool "Make tar, rpm, modprobe etc understand .Z data"
  21. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_Z # it is ancient
  22. config BUSYBOX_CONFIG_AR
  23. bool "ar (9.5 kb)"
  24. default BUSYBOX_DEFAULT_AR # 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_CONFIG_FEATURE_AR_LONG_FILENAMES
  32. bool "Support long filenames (not needed for debs)"
  33. default BUSYBOX_DEFAULT_FEATURE_AR_LONG_FILENAMES
  34. depends on BUSYBOX_CONFIG_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_CONFIG_FEATURE_AR_CREATE
  41. bool "Support archive creation"
  42. default BUSYBOX_DEFAULT_FEATURE_AR_CREATE
  43. depends on BUSYBOX_CONFIG_AR
  44. help
  45. This enables archive creation (-c and -r) with busybox ar.
  46. config BUSYBOX_CONFIG_UNCOMPRESS
  47. bool "uncompress (7.1 kb)"
  48. default BUSYBOX_DEFAULT_UNCOMPRESS # 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_CONFIG_GUNZIP
  53. bool "gunzip (11 kb)"
  54. default BUSYBOX_DEFAULT_GUNZIP
  55. select BUSYBOX_CONFIG_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_CONFIG_ZCAT
  61. bool "zcat (24 kb)"
  62. default BUSYBOX_DEFAULT_ZCAT
  63. select BUSYBOX_CONFIG_FEATURE_GZIP_DECOMPRESS
  64. help
  65. Alias to "gunzip -c".
  66. config BUSYBOX_CONFIG_FEATURE_GUNZIP_LONG_OPTIONS
  67. bool "Enable long options"
  68. default BUSYBOX_DEFAULT_FEATURE_GUNZIP_LONG_OPTIONS
  69. depends on (BUSYBOX_CONFIG_GUNZIP || BUSYBOX_CONFIG_ZCAT) && BUSYBOX_CONFIG_LONG_OPTS
  70. config BUSYBOX_CONFIG_BUNZIP2
  71. bool "bunzip2 (8.7 kb)"
  72. default BUSYBOX_DEFAULT_BUNZIP2
  73. select BUSYBOX_CONFIG_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_CONFIG_BZCAT
  83. bool "bzcat (8.7 kb)"
  84. default BUSYBOX_DEFAULT_BZCAT
  85. select BUSYBOX_CONFIG_FEATURE_BZIP2_DECOMPRESS
  86. help
  87. Alias to "bunzip2 -c".
  88. config BUSYBOX_CONFIG_UNLZMA
  89. bool "unlzma (7.5 kb)"
  90. default BUSYBOX_DEFAULT_UNLZMA
  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_CONFIG_LZCAT
  97. bool "lzcat (7.5 kb)"
  98. default BUSYBOX_DEFAULT_LZCAT
  99. help
  100. Alias to "unlzma -c".
  101. config BUSYBOX_CONFIG_LZMA
  102. bool "lzma -d"
  103. default BUSYBOX_DEFAULT_LZMA
  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_CONFIG_UNXZ
  108. bool "unxz (13 kb)"
  109. default BUSYBOX_DEFAULT_UNXZ
  110. help
  111. unxz is a unlzma successor.
  112. config BUSYBOX_CONFIG_XZCAT
  113. bool "xzcat (13 kb)"
  114. default BUSYBOX_DEFAULT_XZCAT
  115. help
  116. Alias to "unxz -c".
  117. config BUSYBOX_CONFIG_XZ
  118. bool "xz -d"
  119. default BUSYBOX_DEFAULT_XZ
  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_CONFIG_BZIP2
  124. bool "bzip2 (16 kb)"
  125. default BUSYBOX_DEFAULT_BZIP2
  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_CONFIG_BZIP2_SMALL
  135. int "Trade bytes for speed (0:fast, 9:small)"
  136. default BUSYBOX_DEFAULT_BZIP2_SMALL # all "fast or small" options default to small
  137. range 0 9
  138. depends on BUSYBOX_CONFIG_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_CONFIG_FEATURE_BZIP2_DECOMPRESS
  151. bool "Enable decompression"
  152. default BUSYBOX_DEFAULT_FEATURE_BZIP2_DECOMPRESS
  153. depends on BUSYBOX_CONFIG_BZIP2 || BUSYBOX_CONFIG_BUNZIP2 || BUSYBOX_CONFIG_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_CONFIG_CPIO
  159. bool "cpio (15 kb)"
  160. default BUSYBOX_DEFAULT_CPIO
  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_CONFIG_FEATURE_CPIO_O
  170. bool "Support archive creation"
  171. default BUSYBOX_DEFAULT_FEATURE_CPIO_O
  172. depends on BUSYBOX_CONFIG_CPIO
  173. help
  174. This implementation of cpio can create cpio archives in the "newc"
  175. format only.
  176. config BUSYBOX_CONFIG_FEATURE_CPIO_P
  177. bool "Support passthrough mode"
  178. default BUSYBOX_DEFAULT_FEATURE_CPIO_P
  179. depends on BUSYBOX_CONFIG_FEATURE_CPIO_O
  180. help
  181. Passthrough mode. Rarely used.
  182. config BUSYBOX_CONFIG_DPKG
  183. bool "dpkg (43 kb)"
  184. default BUSYBOX_DEFAULT_DPKG
  185. select BUSYBOX_CONFIG_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_CONFIG_DPKG_DEB
  192. bool "dpkg-deb (30 kb)"
  193. default BUSYBOX_DEFAULT_DPKG_DEB
  194. select BUSYBOX_CONFIG_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_CONFIG_GZIP
  201. bool "gzip (17 kb)"
  202. default BUSYBOX_DEFAULT_GZIP
  203. help
  204. gzip is used to compress files.
  205. It's probably the most widely used UNIX compression program.
  206. config BUSYBOX_CONFIG_FEATURE_GZIP_LONG_OPTIONS
  207. bool "Enable long options"
  208. default BUSYBOX_DEFAULT_FEATURE_GZIP_LONG_OPTIONS
  209. depends on BUSYBOX_CONFIG_GZIP && BUSYBOX_CONFIG_LONG_OPTS
  210. config BUSYBOX_CONFIG_GZIP_FAST
  211. int "Trade memory for speed (0:small,slow - 2:fast,big)"
  212. default BUSYBOX_DEFAULT_GZIP_FAST
  213. range 0 2
  214. depends on BUSYBOX_CONFIG_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_CONFIG_FEATURE_GZIP_LEVELS
  222. bool "Enable compression levels"
  223. default BUSYBOX_DEFAULT_FEATURE_GZIP_LEVELS
  224. depends on BUSYBOX_CONFIG_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 -9
  229. is used.
  230. config BUSYBOX_CONFIG_FEATURE_GZIP_DECOMPRESS
  231. bool "Enable decompression"
  232. default BUSYBOX_DEFAULT_FEATURE_GZIP_DECOMPRESS
  233. depends on BUSYBOX_CONFIG_GZIP || BUSYBOX_CONFIG_GUNZIP || BUSYBOX_CONFIG_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_CONFIG_LZOP
  239. bool "lzop (12 kb)"
  240. default BUSYBOX_DEFAULT_LZOP
  241. help
  242. Lzop compression/decompresion.
  243. config BUSYBOX_CONFIG_UNLZOP
  244. bool "unlzop (13 kb)"
  245. default BUSYBOX_DEFAULT_UNLZOP # INCOMPAT: upstream lzop does not provide such tool
  246. help
  247. Lzop decompresion.
  248. config BUSYBOX_CONFIG_LZOPCAT
  249. bool "lzopcat (13 kb)"
  250. default BUSYBOX_DEFAULT_LZOPCAT # INCOMPAT: upstream lzop does not provide such tool
  251. help
  252. Alias to "lzop -dc".
  253. config BUSYBOX_CONFIG_LZOP_COMPR_HIGH
  254. bool "lzop compression levels 7,8,9 (not very useful)"
  255. default BUSYBOX_DEFAULT_LZOP_COMPR_HIGH
  256. depends on BUSYBOX_CONFIG_LZOP || BUSYBOX_CONFIG_UNLZOP || BUSYBOX_CONFIG_LZOPCAT
  257. help
  258. High levels (7,8,9) of lzop compression. These levels
  259. are actually slower than gzip at equivalent compression ratios
  260. and take up 3.2K of code.
  261. config BUSYBOX_CONFIG_RPM
  262. bool "rpm (32 kb)"
  263. default BUSYBOX_DEFAULT_RPM
  264. help
  265. Mini RPM applet - queries and extracts RPM packages.
  266. config BUSYBOX_CONFIG_RPM2CPIO
  267. bool "rpm2cpio (21 kb)"
  268. default BUSYBOX_DEFAULT_RPM2CPIO
  269. help
  270. Converts a RPM file into a CPIO archive.
  271. config BUSYBOX_CONFIG_TAR
  272. bool "tar (39 kb)"
  273. default BUSYBOX_DEFAULT_TAR
  274. help
  275. tar is an archiving program. It's commonly used with gzip to
  276. create compressed archives. It's probably the most widely used
  277. UNIX archive program.
  278. config BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
  279. bool "Enable long options"
  280. default BUSYBOX_DEFAULT_FEATURE_TAR_LONG_OPTIONS
  281. depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_LONG_OPTS
  282. config BUSYBOX_CONFIG_FEATURE_TAR_CREATE
  283. bool "Enable -c (archive creation)"
  284. default BUSYBOX_DEFAULT_FEATURE_TAR_CREATE
  285. depends on BUSYBOX_CONFIG_TAR
  286. config BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT
  287. bool "Autodetect compressed tarballs"
  288. default BUSYBOX_DEFAULT_FEATURE_TAR_AUTODETECT
  289. depends on BUSYBOX_CONFIG_TAR && (BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z || BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ || BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 || BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA || BUSYBOX_CONFIG_FEATURE_SEAMLESS_XZ)
  290. help
  291. With this option tar can automatically detect compressed
  292. tarballs. Currently it works only on files (not pipes etc).
  293. config BUSYBOX_CONFIG_FEATURE_TAR_FROM
  294. bool "Enable -X (exclude from) and -T (include from) options"
  295. default BUSYBOX_DEFAULT_FEATURE_TAR_FROM
  296. depends on BUSYBOX_CONFIG_TAR
  297. help
  298. If you enable this option you'll be able to specify
  299. a list of files to include or exclude from an archive.
  300. config BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
  301. bool "Support old tar header format"
  302. default BUSYBOX_DEFAULT_FEATURE_TAR_OLDGNU_COMPATIBILITY
  303. depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
  304. help
  305. This option is required to unpack archives created in
  306. the old GNU format; help to kill this old format by
  307. repacking your ancient archives with the new format.
  308. config BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY
  309. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  310. default BUSYBOX_DEFAULT_FEATURE_TAR_OLDSUN_COMPATIBILITY
  311. depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
  312. help
  313. This option is required to unpack archives created by some old
  314. version of Sun's tar (it was calculating checksum using signed
  315. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  316. tarballs still exist.
  317. config BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS
  318. bool "Support GNU tar extensions (long filenames)"
  319. default BUSYBOX_DEFAULT_FEATURE_TAR_GNU_EXTENSIONS
  320. depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
  321. config BUSYBOX_CONFIG_FEATURE_TAR_TO_COMMAND
  322. bool "Support writing to an external program (--to-command)"
  323. default BUSYBOX_DEFAULT_FEATURE_TAR_TO_COMMAND
  324. depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
  325. help
  326. If you enable this option you'll be able to instruct tar to send
  327. the contents of each extracted file to the standard input of an
  328. external program.
  329. config BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME
  330. bool "Enable use of user and group names"
  331. default BUSYBOX_DEFAULT_FEATURE_TAR_UNAME_GNAME
  332. depends on BUSYBOX_CONFIG_TAR
  333. help
  334. Enable use of user and group names in tar. This affects contents
  335. listings (-t) and preserving permissions when unpacking (-p).
  336. +200 bytes.
  337. config BUSYBOX_CONFIG_FEATURE_TAR_NOPRESERVE_TIME
  338. bool "Enable -m (do not preserve time) GNU option"
  339. default BUSYBOX_DEFAULT_FEATURE_TAR_NOPRESERVE_TIME
  340. depends on BUSYBOX_CONFIG_TAR
  341. config BUSYBOX_CONFIG_FEATURE_TAR_SELINUX
  342. bool "Support extracting SELinux labels"
  343. default BUSYBOX_DEFAULT_FEATURE_TAR_SELINUX
  344. depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_SELINUX
  345. help
  346. With this option busybox supports restoring SELinux labels
  347. when extracting files from tar archives.
  348. config BUSYBOX_CONFIG_UNZIP
  349. bool "unzip (26 kb)"
  350. default BUSYBOX_DEFAULT_UNZIP
  351. help
  352. unzip will list or extract files from a ZIP archive,
  353. commonly found on DOS/WIN systems. The default behavior
  354. (with no options) is to extract the archive into the
  355. current directory.
  356. config BUSYBOX_CONFIG_FEATURE_UNZIP_CDF
  357. bool "Read and use Central Directory data"
  358. default BUSYBOX_DEFAULT_FEATURE_UNZIP_CDF
  359. depends on BUSYBOX_CONFIG_UNZIP
  360. help
  361. If you know that you only need to deal with simple
  362. ZIP files without deleted/updated files, SFX archives etc,
  363. you can reduce code size by unselecting this option.
  364. To support less trivial ZIPs, say Y.
  365. config BUSYBOX_CONFIG_FEATURE_UNZIP_BZIP2
  366. bool "Support compression method 12 (bzip2)"
  367. default BUSYBOX_DEFAULT_FEATURE_UNZIP_BZIP2
  368. depends on BUSYBOX_CONFIG_FEATURE_UNZIP_CDF && BUSYBOX_CONFIG_DESKTOP
  369. config BUSYBOX_CONFIG_FEATURE_UNZIP_LZMA
  370. bool "Support compression method 14 (lzma)"
  371. default BUSYBOX_DEFAULT_FEATURE_UNZIP_LZMA
  372. depends on BUSYBOX_CONFIG_FEATURE_UNZIP_CDF && BUSYBOX_CONFIG_DESKTOP
  373. config BUSYBOX_CONFIG_FEATURE_UNZIP_XZ
  374. bool "Support compression method 95 (xz)"
  375. default BUSYBOX_DEFAULT_FEATURE_UNZIP_XZ
  376. depends on BUSYBOX_CONFIG_FEATURE_UNZIP_CDF && BUSYBOX_CONFIG_DESKTOP
  377. config BUSYBOX_CONFIG_FEATURE_LZMA_FAST
  378. bool "Optimize lzma for speed"
  379. default BUSYBOX_DEFAULT_FEATURE_LZMA_FAST
  380. depends on BUSYBOX_CONFIG_UNLZMA || BUSYBOX_CONFIG_LZCAT || BUSYBOX_CONFIG_LZMA || BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA
  381. help
  382. This option reduces decompression time by about 25% at the cost of
  383. a 1K bigger binary.
  384. endmenu