Config.in 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  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_BZIP2
  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_BZIP2
  80. bool "bzip2"
  81. depends on !BUSYBOX_DISABLE_BZIP2
  82. default n
  83. help
  84. bzip2 is a compression utility using the Burrows-Wheeler block
  85. sorting text compression algorithm, and Huffman coding. Compression
  86. is generally considerably better than that achieved by more
  87. conventional LZ77/LZ78-based compressors, and approaches the
  88. performance of the PPM family of statistical compressors.
  89. Unless you have a specific application which requires bzip2, you
  90. should probably say N here.
  91. config BUSYBOX_CPIO
  92. bool "cpio"
  93. depends on !BUSYBOX_DISABLE_CPIO
  94. default n
  95. help
  96. cpio is an archival utility program used to create, modify, and
  97. extract contents from archives.
  98. cpio has 110 bytes of overheads for every stored file.
  99. This implementation of cpio can extract cpio archives created in the
  100. "newc" or "crc" format, it cannot create or modify them.
  101. Unless you have a specific application which requires cpio, you
  102. should probably say N here.
  103. config BUSYBOX_FEATURE_CPIO_O
  104. bool "Support for archive creation"
  105. default y
  106. depends on BUSYBOX_CPIO
  107. help
  108. This implementation of cpio can create cpio archives in the "newc"
  109. format only.
  110. config BUSYBOX_FEATURE_CPIO_P
  111. bool "Support for passthrough mode"
  112. default y
  113. depends on BUSYBOX_FEATURE_CPIO_O
  114. help
  115. Passthrough mode. Rarely used.
  116. config BUSYBOX_DPKG
  117. bool "dpkg"
  118. default n
  119. select BUSYBOX_FEATURE_SEAMLESS_GZ
  120. help
  121. dpkg is a medium-level tool to install, build, remove and manage
  122. Debian packages.
  123. This implementation of dpkg has a number of limitations,
  124. you should use the official dpkg if possible.
  125. config BUSYBOX_DPKG_DEB
  126. bool "dpkg_deb"
  127. default n
  128. select BUSYBOX_FEATURE_SEAMLESS_GZ
  129. help
  130. dpkg-deb unpacks and provides information about Debian archives.
  131. This implementation of dpkg-deb cannot pack archives.
  132. Unless you have a specific application which requires dpkg-deb,
  133. say N here.
  134. config BUSYBOX_FEATURE_DPKG_DEB_EXTRACT_ONLY
  135. bool "Extract only (-x)"
  136. default n
  137. depends on BUSYBOX_DPKG_DEB
  138. help
  139. This reduces dpkg-deb to the equivalent of
  140. "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
  141. of the extra dpkg-deb, ar or tar options are needed, they are linked
  142. to internally.
  143. config BUSYBOX_GUNZIP
  144. bool "gunzip"
  145. default y
  146. help
  147. gunzip is used to decompress archives created by gzip.
  148. You can use the `-t' option to test the integrity of
  149. an archive, without decompressing it.
  150. config BUSYBOX_GZIP
  151. bool "gzip"
  152. default y
  153. help
  154. gzip is used to compress files.
  155. It's probably the most widely used UNIX compression program.
  156. config BUSYBOX_FEATURE_GZIP_LONG_OPTIONS
  157. bool "Enable long options"
  158. default y
  159. depends on BUSYBOX_GZIP && BUSYBOX_LONG_OPTS
  160. help
  161. Enable use of long options, increases size by about 106 Bytes
  162. config BUSYBOX_GZIP_FAST
  163. int "Trade memory for gzip speed (0:small,slow - 2:fast,big)"
  164. default 0
  165. range 0 2
  166. depends on BUSYBOX_GZIP
  167. help
  168. Enable big memory options for gzip.
  169. 0: small buffers, small hash-tables
  170. 1: larger buffers, larger hash-tables
  171. 2: larger buffers, largest hash-tables
  172. Larger models may give slightly better compression
  173. config BUSYBOX_LZOP
  174. bool "lzop"
  175. default n
  176. help
  177. Lzop compression/decompresion.
  178. config BUSYBOX_LZOP_COMPR_HIGH
  179. bool "lzop compression levels 7,8,9 (not very useful)"
  180. default n
  181. depends on BUSYBOX_LZOP
  182. help
  183. High levels (7,8,9) of lzop compression. These levels
  184. are actually slower than gzip at equivalent compression ratios
  185. and take up 3.2K of code.
  186. config BUSYBOX_FEATURE_GZIP_LEVELS
  187. bool "Enable compression levels"
  188. default n
  189. depends on BUSYBOX_GZIP
  190. help
  191. Enable support for compression levels 4-9. The default level
  192. is 6. If levels 1-3 are specified, 4 is used.
  193. If this option is not selected, -N options are ignored and -9
  194. is used.
  195. config BUSYBOX_IPKG
  196. bool "ipkg"
  197. default n
  198. help
  199. ipkg is the itsy package management system.
  200. config BUSYBOX_RPM2CPIO
  201. bool "rpm2cpio"
  202. depends on !BUSYBOX_DISABLE_RPM
  203. default n
  204. help
  205. Converts a RPM file into a CPIO archive.
  206. config BUSYBOX_RPM
  207. bool "rpm"
  208. depends on !BUSYBOX_DISABLE_RPM
  209. default n
  210. help
  211. Mini RPM applet - queries and extracts RPM packages.
  212. config BUSYBOX_TAR
  213. bool "tar"
  214. depends on !BUSYBOX_DISABLE_TAR
  215. default y
  216. help
  217. tar is an archiving program. It's commonly used with gzip to
  218. create compressed archives. It's probably the most widely used
  219. UNIX archive program.
  220. config BUSYBOX_FEATURE_TAR_CREATE
  221. bool "Enable archive creation"
  222. default y
  223. depends on BUSYBOX_TAR
  224. help
  225. If you enable this option you'll be able to create
  226. tar archives using the `-c' option.
  227. config BUSYBOX_FEATURE_TAR_AUTODETECT
  228. bool "Autodetect compressed tarballs"
  229. default y
  230. depends on BUSYBOX_TAR && (BUSYBOX_FEATURE_SEAMLESS_Z || BUSYBOX_FEATURE_SEAMLESS_GZ || BUSYBOX_FEATURE_SEAMLESS_BZ2 || BUSYBOX_FEATURE_SEAMLESS_LZMA || BUSYBOX_FEATURE_SEAMLESS_XZ)
  231. help
  232. With this option tar can automatically detect compressed
  233. tarballs. Currently it works only on files (not pipes etc).
  234. config BUSYBOX_FEATURE_TAR_FROM
  235. bool "Enable -X (exclude from) and -T (include from) options)"
  236. default y
  237. depends on BUSYBOX_TAR
  238. help
  239. If you enable this option you'll be able to specify
  240. a list of files to include or exclude from an archive.
  241. config BUSYBOX_FEATURE_TAR_OLDGNU_COMPATIBILITY
  242. bool "Support for old tar header format"
  243. default y
  244. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  245. help
  246. This option is required to unpack archives created in
  247. the old GNU format; help to kill this old format by
  248. repacking your ancient archives with the new format.
  249. config BUSYBOX_FEATURE_TAR_OLDSUN_COMPATIBILITY
  250. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  251. default n
  252. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  253. help
  254. This option is required to unpack archives created by some old
  255. version of Sun's tar (it was calculating checksum using signed
  256. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  257. tarballs still exist.
  258. config BUSYBOX_FEATURE_TAR_GNU_EXTENSIONS
  259. bool "Support for GNU tar extensions (long filenames)"
  260. default y
  261. depends on BUSYBOX_TAR || BUSYBOX_DPKG
  262. help
  263. With this option busybox supports GNU long filenames and
  264. linknames.
  265. config BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  266. bool "Enable long options"
  267. default y
  268. depends on BUSYBOX_TAR && BUSYBOX_LONG_OPTS
  269. help
  270. Enable use of long options, increases size by about 400 Bytes
  271. config BUSYBOX_FEATURE_TAR_TO_COMMAND
  272. bool "Support for writing to an external program"
  273. default y
  274. depends on BUSYBOX_TAR && BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  275. help
  276. If you enable this option you'll be able to instruct tar to send
  277. the contents of each extracted file to the standard input of an
  278. external program.
  279. config BUSYBOX_FEATURE_TAR_UNAME_GNAME
  280. bool "Enable use of user and group names"
  281. default y
  282. depends on BUSYBOX_TAR
  283. help
  284. Enables use of user and group names in tar. This affects contents
  285. listings (-t) and preserving permissions when unpacking (-p).
  286. +200 bytes.
  287. config BUSYBOX_FEATURE_TAR_NOPRESERVE_TIME
  288. bool "Enable -m (do not preserve time) option"
  289. default y
  290. depends on BUSYBOX_TAR
  291. help
  292. With this option busybox supports GNU tar -m
  293. (do not preserve time) option.
  294. config BUSYBOX_FEATURE_TAR_SELINUX
  295. bool "Support for extracting SELinux labels"
  296. default n
  297. depends on BUSYBOX_TAR && BUSYBOX_SELINUX
  298. help
  299. With this option busybox supports restoring SELinux labels
  300. when extracting files from tar archives.
  301. config BUSYBOX_UNCOMPRESS
  302. bool "uncompress"
  303. default n
  304. help
  305. uncompress is used to decompress archives created by compress.
  306. Not much used anymore, replaced by gzip/gunzip.
  307. config BUSYBOX_UNLZMA
  308. bool "unlzma"
  309. default n
  310. help
  311. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  312. compression algorithm, and range coding. Compression
  313. is generally considerably better than that achieved by the bzip2
  314. compressors.
  315. The BusyBox unlzma applet is limited to decompression only.
  316. On an x86 system, this applet adds about 4K.
  317. config BUSYBOX_FEATURE_LZMA_FAST
  318. bool "Optimize unlzma for speed"
  319. default n
  320. depends on BUSYBOX_UNLZMA
  321. help
  322. This option reduces decompression time by about 25% at the cost of
  323. a 1K bigger binary.
  324. config BUSYBOX_LZMA
  325. bool "Provide lzma alias which supports only unpacking"
  326. default n
  327. depends on BUSYBOX_UNLZMA
  328. help
  329. Enable this option if you want commands like "lzma -d" to work.
  330. IOW: you'll get lzma applet, but it will always require -d option.
  331. config BUSYBOX_UNXZ
  332. bool "unxz"
  333. depends on !BUSYBOX_DISABLE_UNXZ
  334. default n
  335. help
  336. unxz is a unlzma successor.
  337. config BUSYBOX_XZ
  338. bool "Provide xz alias which supports only unpacking"
  339. depends on !BUSYBOX_DISABLE_XZ
  340. default n
  341. depends on BUSYBOX_UNXZ
  342. help
  343. Enable this option if you want commands like "xz -d" to work.
  344. IOW: you'll get xz applet, but it will always require -d option.
  345. config BUSYBOX_UNZIP
  346. bool "unzip"
  347. depends on !BUSYBOX_DISABLE_UNZIP
  348. default n
  349. help
  350. unzip will list or extract files from a ZIP archive,
  351. commonly found on DOS/WIN systems. The default behavior
  352. (with no options) is to extract the archive into the
  353. current directory. Use the `-d' option to extract to a
  354. directory of your choice.
  355. endmenu