Config.in 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  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_CONFIG_FEATURE_SEAMLESS_XZ
  8. bool "Make tar, rpm, modprobe etc understand .xz data"
  9. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_XZ
  10. help
  11. Make tar, rpm, modprobe etc understand .xz data.
  12. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA
  13. bool "Make tar, rpm, modprobe etc understand .lzma data"
  14. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_LZMA
  15. help
  16. Make tar, rpm, modprobe etc understand .lzma data.
  17. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2
  18. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  19. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_BZ2
  20. help
  21. Make tar, rpm, modprobe etc understand .bz2 data.
  22. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
  23. bool "Make tar, rpm, modprobe etc understand .gz data"
  24. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_GZ
  25. help
  26. Make tar, rpm, modprobe etc understand .gz data.
  27. config BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z
  28. bool "tar, rpm, modprobe etc understand .Z data"
  29. default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_Z
  30. help
  31. Make tar, rpm, modprobe etc understand .Z data.
  32. config BUSYBOX_CONFIG_AR
  33. bool "ar"
  34. default BUSYBOX_DEFAULT_AR # needs to be improved to be able to replace binutils ar
  35. help
  36. ar is an archival utility program used to create, modify, and
  37. extract contents from archives. An archive is a single file holding
  38. a collection of other files in a structure that makes it possible to
  39. retrieve the original individual files (called archive members).
  40. The original files' contents, mode (permissions), timestamp, owner,
  41. and group are preserved in the archive, and can be restored on
  42. extraction.
  43. The stored filename is limited to 15 characters. (for more information
  44. see long filename support).
  45. ar has 60 bytes of overheads for every stored file.
  46. This implementation of ar can extract archives, it cannot create or
  47. modify them.
  48. On an x86 system, the ar applet adds about 1K.
  49. Unless you have a specific application which requires ar, you should
  50. probably say N here.
  51. config BUSYBOX_CONFIG_FEATURE_AR_LONG_FILENAMES
  52. bool "Support for long filenames (not needed for debs)"
  53. default BUSYBOX_DEFAULT_FEATURE_AR_LONG_FILENAMES
  54. depends on BUSYBOX_CONFIG_AR
  55. help
  56. By default the ar format can only store the first 15 characters
  57. of the filename, this option removes that limitation.
  58. It supports the GNU ar long filename method which moves multiple long
  59. filenames into a the data section of a new ar entry.
  60. config BUSYBOX_CONFIG_FEATURE_AR_CREATE
  61. bool "Support archive creation"
  62. default BUSYBOX_DEFAULT_FEATURE_AR_CREATE
  63. depends on BUSYBOX_CONFIG_AR
  64. help
  65. This enables archive creation (-c and -r) with busybox ar.
  66. config BUSYBOX_CONFIG_UNCOMPRESS
  67. bool "uncompress"
  68. default BUSYBOX_DEFAULT_UNCOMPRESS
  69. help
  70. uncompress is used to decompress archives created by compress.
  71. Not much used anymore, replaced by gzip/gunzip.
  72. config BUSYBOX_CONFIG_GUNZIP
  73. bool "gunzip"
  74. default BUSYBOX_DEFAULT_GUNZIP
  75. help
  76. gunzip is used to decompress archives created by gzip.
  77. You can use the `-t' option to test the integrity of
  78. an archive, without decompressing it.
  79. config BUSYBOX_CONFIG_BUNZIP2
  80. bool "bunzip2"
  81. default BUSYBOX_DEFAULT_BUNZIP2
  82. help
  83. bunzip2 is a compression utility using the Burrows-Wheeler block
  84. sorting text compression algorithm, and Huffman coding. Compression
  85. is generally considerably better than that achieved by more
  86. conventional LZ77/LZ78-based compressors, and approaches the
  87. performance of the PPM family of statistical compressors.
  88. Unless you have a specific application which requires bunzip2, you
  89. should probably say N here.
  90. config BUSYBOX_CONFIG_UNLZMA
  91. bool "unlzma"
  92. default BUSYBOX_DEFAULT_UNLZMA
  93. help
  94. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  95. compression algorithm, and range coding. Compression
  96. is generally considerably better than that achieved by the bzip2
  97. compressors.
  98. The BusyBox unlzma applet is limited to decompression only.
  99. On an x86 system, this applet adds about 4K.
  100. config BUSYBOX_CONFIG_FEATURE_LZMA_FAST
  101. bool "Optimize unlzma for speed"
  102. default BUSYBOX_DEFAULT_FEATURE_LZMA_FAST
  103. depends on BUSYBOX_CONFIG_UNLZMA
  104. help
  105. This option reduces decompression time by about 25% at the cost of
  106. a 1K bigger binary.
  107. config BUSYBOX_CONFIG_LZMA
  108. bool "Provide lzma alias which supports only unpacking"
  109. default BUSYBOX_DEFAULT_LZMA
  110. depends on BUSYBOX_CONFIG_UNLZMA
  111. help
  112. Enable this option if you want commands like "lzma -d" to work.
  113. IOW: you'll get lzma applet, but it will always require -d option.
  114. config BUSYBOX_CONFIG_UNXZ
  115. bool "unxz"
  116. default BUSYBOX_DEFAULT_UNXZ
  117. help
  118. unxz is a unlzma successor.
  119. config BUSYBOX_CONFIG_XZ
  120. bool "Provide xz alias which supports only unpacking"
  121. default BUSYBOX_DEFAULT_XZ
  122. depends on BUSYBOX_CONFIG_UNXZ
  123. help
  124. Enable this option if you want commands like "xz -d" to work.
  125. IOW: you'll get xz applet, but it will always require -d option.
  126. config BUSYBOX_CONFIG_BZIP2
  127. bool "bzip2"
  128. default BUSYBOX_DEFAULT_BZIP2
  129. help
  130. bzip2 is a compression utility using the Burrows-Wheeler block
  131. sorting text compression algorithm, and Huffman coding. Compression
  132. is generally considerably better than that achieved by more
  133. conventional LZ77/LZ78-based compressors, and approaches the
  134. performance of the PPM family of statistical compressors.
  135. Unless you have a specific application which requires bzip2, you
  136. should probably say N here.
  137. config BUSYBOX_CONFIG_CPIO
  138. bool "cpio"
  139. default BUSYBOX_DEFAULT_CPIO
  140. help
  141. cpio is an archival utility program used to create, modify, and
  142. extract contents from archives.
  143. cpio has 110 bytes of overheads for every stored file.
  144. This implementation of cpio can extract cpio archives created in the
  145. "newc" or "crc" format, it cannot create or modify them.
  146. Unless you have a specific application which requires cpio, you
  147. should probably say N here.
  148. config BUSYBOX_CONFIG_FEATURE_CPIO_O
  149. bool "Support for archive creation"
  150. default BUSYBOX_DEFAULT_FEATURE_CPIO_O
  151. depends on BUSYBOX_CONFIG_CPIO
  152. help
  153. This implementation of cpio can create cpio archives in the "newc"
  154. format only.
  155. config BUSYBOX_CONFIG_FEATURE_CPIO_P
  156. bool "Support for passthrough mode"
  157. default BUSYBOX_DEFAULT_FEATURE_CPIO_P
  158. depends on BUSYBOX_CONFIG_FEATURE_CPIO_O
  159. help
  160. Passthrough mode. Rarely used.
  161. config BUSYBOX_CONFIG_DPKG
  162. bool "dpkg"
  163. default BUSYBOX_DEFAULT_DPKG
  164. select BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
  165. help
  166. dpkg is a medium-level tool to install, build, remove and manage
  167. Debian packages.
  168. This implementation of dpkg has a number of limitations,
  169. you should use the official dpkg if possible.
  170. config BUSYBOX_CONFIG_DPKG_DEB
  171. bool "dpkg_deb"
  172. default BUSYBOX_DEFAULT_DPKG_DEB
  173. select BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
  174. help
  175. dpkg-deb unpacks and provides information about Debian archives.
  176. This implementation of dpkg-deb cannot pack archives.
  177. Unless you have a specific application which requires dpkg-deb,
  178. say N here.
  179. config BUSYBOX_CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
  180. bool "Extract only (-x)"
  181. default BUSYBOX_DEFAULT_FEATURE_DPKG_DEB_EXTRACT_ONLY
  182. depends on BUSYBOX_CONFIG_DPKG_DEB
  183. help
  184. This reduces dpkg-deb to the equivalent of
  185. "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
  186. of the extra dpkg-deb, ar or tar options are needed, they are linked
  187. to internally.
  188. config BUSYBOX_CONFIG_GZIP
  189. bool "gzip"
  190. default BUSYBOX_DEFAULT_GZIP
  191. help
  192. gzip is used to compress files.
  193. It's probably the most widely used UNIX compression program.
  194. config BUSYBOX_CONFIG_FEATURE_GZIP_LONG_OPTIONS
  195. bool "Enable long options"
  196. default BUSYBOX_DEFAULT_FEATURE_GZIP_LONG_OPTIONS
  197. depends on BUSYBOX_CONFIG_GZIP && BUSYBOX_CONFIG_LONG_OPTS
  198. help
  199. Enable use of long options, increases size by about 106 Bytes
  200. config BUSYBOX_CONFIG_GZIP_FAST
  201. int "Trade memory for gzip speed (0:small,slow - 2:fast,big)"
  202. default BUSYBOX_DEFAULT_GZIP_FAST
  203. range 0 2
  204. depends on BUSYBOX_CONFIG_GZIP
  205. help
  206. Enable big memory options for gzip.
  207. 0: small buffers, small hash-tables
  208. 1: larger buffers, larger hash-tables
  209. 2: larger buffers, largest hash-tables
  210. Larger models may give slightly better compression
  211. config BUSYBOX_CONFIG_FEATURE_GZIP_LEVELS
  212. bool "Enable compression levels"
  213. default BUSYBOX_DEFAULT_FEATURE_GZIP_LEVELS
  214. depends on BUSYBOX_CONFIG_GZIP
  215. help
  216. Enable support for compression levels 4-9. The default level
  217. is 6. If levels 1-3 are specified, 4 is used.
  218. If this option is not selected, -N options are ignored and -9
  219. is used.
  220. config BUSYBOX_CONFIG_LZOP
  221. bool "lzop"
  222. default BUSYBOX_DEFAULT_LZOP
  223. help
  224. Lzop compression/decompresion.
  225. config BUSYBOX_CONFIG_LZOP_COMPR_HIGH
  226. bool "lzop compression levels 7,8,9 (not very useful)"
  227. default BUSYBOX_DEFAULT_LZOP_COMPR_HIGH
  228. depends on BUSYBOX_CONFIG_LZOP
  229. help
  230. High levels (7,8,9) of lzop compression. These levels
  231. are actually slower than gzip at equivalent compression ratios
  232. and take up 3.2K of code.
  233. config BUSYBOX_CONFIG_RPM
  234. bool "rpm"
  235. default BUSYBOX_DEFAULT_RPM
  236. help
  237. Mini RPM applet - queries and extracts RPM packages.
  238. config BUSYBOX_CONFIG_RPM2CPIO
  239. bool "rpm2cpio"
  240. default BUSYBOX_DEFAULT_RPM2CPIO
  241. help
  242. Converts a RPM file into a CPIO archive.
  243. config BUSYBOX_CONFIG_TAR
  244. bool "tar"
  245. default BUSYBOX_DEFAULT_TAR
  246. help
  247. tar is an archiving program. It's commonly used with gzip to
  248. create compressed archives. It's probably the most widely used
  249. UNIX archive program.
  250. config BUSYBOX_CONFIG_FEATURE_TAR_CREATE
  251. bool "Enable archive creation"
  252. default BUSYBOX_DEFAULT_FEATURE_TAR_CREATE
  253. depends on BUSYBOX_CONFIG_TAR
  254. help
  255. If you enable this option you'll be able to create
  256. tar archives using the `-c' option.
  257. config BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT
  258. bool "Autodetect compressed tarballs"
  259. default BUSYBOX_DEFAULT_FEATURE_TAR_AUTODETECT
  260. 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)
  261. help
  262. With this option tar can automatically detect compressed
  263. tarballs. Currently it works only on files (not pipes etc).
  264. config BUSYBOX_CONFIG_FEATURE_TAR_FROM
  265. bool "Enable -X (exclude from) and -T (include from) options)"
  266. default BUSYBOX_DEFAULT_FEATURE_TAR_FROM
  267. depends on BUSYBOX_CONFIG_TAR
  268. help
  269. If you enable this option you'll be able to specify
  270. a list of files to include or exclude from an archive.
  271. config BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
  272. bool "Support for old tar header format"
  273. default BUSYBOX_DEFAULT_FEATURE_TAR_OLDGNU_COMPATIBILITY
  274. depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
  275. help
  276. This option is required to unpack archives created in
  277. the old GNU format; help to kill this old format by
  278. repacking your ancient archives with the new format.
  279. config BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY
  280. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  281. default BUSYBOX_DEFAULT_FEATURE_TAR_OLDSUN_COMPATIBILITY
  282. depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
  283. help
  284. This option is required to unpack archives created by some old
  285. version of Sun's tar (it was calculating checksum using signed
  286. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  287. tarballs still exist.
  288. config BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS
  289. bool "Support for GNU tar extensions (long filenames)"
  290. default BUSYBOX_DEFAULT_FEATURE_TAR_GNU_EXTENSIONS
  291. depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
  292. help
  293. With this option busybox supports GNU long filenames and
  294. linknames.
  295. config BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
  296. bool "Enable long options"
  297. default BUSYBOX_DEFAULT_FEATURE_TAR_LONG_OPTIONS
  298. depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_LONG_OPTS
  299. help
  300. Enable use of long options, increases size by about 400 Bytes
  301. config BUSYBOX_CONFIG_FEATURE_TAR_TO_COMMAND
  302. bool "Support for writing to an external program"
  303. default BUSYBOX_DEFAULT_FEATURE_TAR_TO_COMMAND
  304. depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
  305. help
  306. If you enable this option you'll be able to instruct tar to send
  307. the contents of each extracted file to the standard input of an
  308. external program.
  309. config BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME
  310. bool "Enable use of user and group names"
  311. default BUSYBOX_DEFAULT_FEATURE_TAR_UNAME_GNAME
  312. depends on BUSYBOX_CONFIG_TAR
  313. help
  314. Enables use of user and group names in tar. This affects contents
  315. listings (-t) and preserving permissions when unpacking (-p).
  316. +200 bytes.
  317. config BUSYBOX_CONFIG_FEATURE_TAR_NOPRESERVE_TIME
  318. bool "Enable -m (do not preserve time) option"
  319. default BUSYBOX_DEFAULT_FEATURE_TAR_NOPRESERVE_TIME
  320. depends on BUSYBOX_CONFIG_TAR
  321. help
  322. With this option busybox supports GNU tar -m
  323. (do not preserve time) option.
  324. config BUSYBOX_CONFIG_FEATURE_TAR_SELINUX
  325. bool "Support for extracting SELinux labels"
  326. default BUSYBOX_DEFAULT_FEATURE_TAR_SELINUX
  327. depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_SELINUX
  328. help
  329. With this option busybox supports restoring SELinux labels
  330. when extracting files from tar archives.
  331. config BUSYBOX_CONFIG_UNZIP
  332. bool "unzip"
  333. default BUSYBOX_DEFAULT_UNZIP
  334. help
  335. unzip will list or extract files from a ZIP archive,
  336. commonly found on DOS/WIN systems. The default behavior
  337. (with no options) is to extract the archive into the
  338. current directory. Use the `-d' option to extract to a
  339. directory of your choice.
  340. endmenu