Config.in 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Archival Utilities"
  6. config FEATURE_SEAMLESS_LZMA
  7. bool "Make tar, rpm, modprobe etc understand .lzma data"
  8. default n
  9. help
  10. Make tar, rpm, modprobe etc understand .lzma data.
  11. config FEATURE_SEAMLESS_BZ2
  12. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  13. default n
  14. help
  15. Make tar, rpm, modprobe etc understand .bz2 data.
  16. config FEATURE_SEAMLESS_GZ
  17. bool "Make tar, rpm, modprobe etc understand .gz data"
  18. default n
  19. help
  20. Make tar, rpm, modprobe etc understand .gz data.
  21. config FEATURE_SEAMLESS_Z
  22. bool "Make tar and gunzip understand .Z data"
  23. default n
  24. help
  25. Make tar and gunzip understand .Z data.
  26. config AR
  27. bool "ar"
  28. default n
  29. help
  30. ar is an archival utility program used to create, modify, and
  31. extract contents from archives. An archive is a single file holding
  32. a collection of other files in a structure that makes it possible to
  33. retrieve the original individual files (called archive members).
  34. The original files' contents, mode (permissions), timestamp, owner,
  35. and group are preserved in the archive, and can be restored on
  36. extraction.
  37. The stored filename is limited to 15 characters. (for more information
  38. see long filename support).
  39. ar has 60 bytes of overheads for every stored file.
  40. This implementation of ar can extract archives, it cannot create or
  41. modify them.
  42. On an x86 system, the ar applet adds about 1K.
  43. Unless you have a specific application which requires ar, you should
  44. probably say N here.
  45. config FEATURE_AR_LONG_FILENAMES
  46. bool "Support for long filenames (not needed for debs)"
  47. default n
  48. depends on AR
  49. help
  50. By default the ar format can only store the first 15 characters
  51. of the filename, this option removes that limitation.
  52. It supports the GNU ar long filename method which moves multiple long
  53. filenames into a the data section of a new ar entry.
  54. config FEATURE_AR_CREATE
  55. bool "Support archive creation"
  56. default n
  57. depends on AR
  58. help
  59. This enables archive creation (-c and -r) with busybox ar.
  60. config BUNZIP2
  61. bool "bunzip2"
  62. default n
  63. help
  64. bunzip2 is a compression utility using the Burrows-Wheeler block
  65. sorting text compression algorithm, and Huffman coding. Compression
  66. is generally considerably better than that achieved by more
  67. conventional LZ77/LZ78-based compressors, and approaches the
  68. performance of the PPM family of statistical compressors.
  69. Unless you have a specific application which requires bunzip2, you
  70. should probably say N here.
  71. config BZIP2
  72. bool "bzip2"
  73. default n
  74. help
  75. bzip2 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 bzip2, you
  81. should probably say N here.
  82. config CPIO
  83. bool "cpio"
  84. default n
  85. help
  86. cpio is an archival utility program used to create, modify, and
  87. extract contents from archives.
  88. cpio has 110 bytes of overheads for every stored file.
  89. This implementation of cpio can extract cpio archives created in the
  90. "newc" or "crc" format, it cannot create or modify them.
  91. Unless you have a specific application which requires cpio, you
  92. should probably say N here.
  93. config FEATURE_CPIO_O
  94. bool "Support for archive creation"
  95. default n
  96. depends on CPIO
  97. help
  98. This implementation of cpio can create cpio archives in the "newc"
  99. format only.
  100. config FEATURE_CPIO_P
  101. bool "Support for passthrough mode"
  102. default n
  103. depends on FEATURE_CPIO_O
  104. help
  105. Passthrough mode. Rarely used.
  106. config DPKG
  107. bool "dpkg"
  108. default n
  109. select FEATURE_SEAMLESS_GZ
  110. help
  111. dpkg is a medium-level tool to install, build, remove and manage
  112. Debian packages.
  113. This implementation of dpkg has a number of limitations,
  114. you should use the official dpkg if possible.
  115. config DPKG_DEB
  116. bool "dpkg_deb"
  117. default n
  118. select FEATURE_SEAMLESS_GZ
  119. help
  120. dpkg-deb unpacks and provides information about Debian archives.
  121. This implementation of dpkg-deb cannot pack archives.
  122. Unless you have a specific application which requires dpkg-deb,
  123. say N here.
  124. config FEATURE_DPKG_DEB_EXTRACT_ONLY
  125. bool "Extract only (-x)"
  126. default n
  127. depends on DPKG_DEB
  128. help
  129. This reduces dpkg-deb to the equivalent of
  130. "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
  131. of the extra dpkg-deb, ar or tar options are needed, they are linked
  132. to internally.
  133. config GUNZIP
  134. bool "gunzip"
  135. default n
  136. help
  137. gunzip is used to decompress archives created by gzip.
  138. You can use the `-t' option to test the integrity of
  139. an archive, without decompressing it.
  140. config GZIP
  141. bool "gzip"
  142. default n
  143. help
  144. gzip is used to compress files.
  145. It's probably the most widely used UNIX compression program.
  146. config FEATURE_GZIP_LONG_OPTIONS
  147. bool "Enable long options"
  148. default n
  149. depends on GZIP && LONG_OPTS
  150. help
  151. Enable use of long options, increases size by about 106 Bytes
  152. config LZOP
  153. bool "lzop"
  154. default n
  155. help
  156. Lzop compression/decompresion.
  157. config LZOP_COMPR_HIGH
  158. bool "lzop complession levels 7,8,9 (not very useful)"
  159. default n
  160. depends on LZOP
  161. help
  162. High levels (7,8,9) of lzop compression. These levels
  163. are actually slower than gzip at equivalent compression ratios
  164. and take up 3.2K of code.
  165. config RPM2CPIO
  166. bool "rpm2cpio"
  167. default n
  168. help
  169. Converts an RPM file into a CPIO archive.
  170. config RPM
  171. bool "rpm"
  172. default n
  173. help
  174. Mini RPM applet - queries and extracts RPM packages.
  175. config TAR
  176. bool "tar"
  177. default n
  178. help
  179. tar is an archiving program. It's commonly used with gzip to
  180. create compressed archives. It's probably the most widely used
  181. UNIX archive program.
  182. config FEATURE_TAR_CREATE
  183. bool "Enable archive creation"
  184. default y
  185. depends on TAR
  186. help
  187. If you enable this option you'll be able to create
  188. tar archives using the `-c' option.
  189. config FEATURE_TAR_AUTODETECT
  190. bool "Autodetect compressed tarballs"
  191. default n
  192. depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA)
  193. help
  194. With this option tar can automatically detect compressed
  195. tarballs. Currently it works only on files (not pipes etc).
  196. config FEATURE_TAR_FROM
  197. bool "Enable -X (exclude from) and -T (include from) options)"
  198. default n
  199. depends on TAR
  200. help
  201. If you enable this option you'll be able to specify
  202. a list of files to include or exclude from an archive.
  203. config FEATURE_TAR_OLDGNU_COMPATIBILITY
  204. bool "Support for old tar header format"
  205. default N
  206. depends on TAR || DPKG
  207. help
  208. This option is required to unpack archives created in
  209. the old GNU format; help to kill this old format by
  210. repacking your ancient archives with the new format.
  211. config FEATURE_TAR_OLDSUN_COMPATIBILITY
  212. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  213. default N
  214. depends on TAR || DPKG
  215. help
  216. This option is required to unpack archives created by some old
  217. version of Sun's tar (it was calculating checksum using signed
  218. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  219. tarballs still exist.
  220. config FEATURE_TAR_GNU_EXTENSIONS
  221. bool "Support for GNU tar extensions (long filenames)"
  222. default y
  223. depends on TAR || DPKG
  224. help
  225. With this option busybox supports GNU long filenames and
  226. linknames.
  227. config FEATURE_TAR_LONG_OPTIONS
  228. bool "Enable long options"
  229. default n
  230. depends on TAR && LONG_OPTS
  231. help
  232. Enable use of long options, increases size by about 400 Bytes
  233. config FEATURE_TAR_UNAME_GNAME
  234. bool "Enable use of user and group names"
  235. default n
  236. depends on TAR
  237. help
  238. Enables use of user and group names in tar. This affects contents
  239. listings (-t) and preserving permissions when unpacking (-p).
  240. +200 bytes.
  241. config FEATURE_TAR_NOPRESERVE_TIME
  242. bool "Enable -m (do not preserve time) option"
  243. default n
  244. depends on TAR
  245. help
  246. With this option busybox supports GNU tar -m
  247. (do not preserve time) option.
  248. config FEATURE_TAR_SELINUX
  249. bool "Support for extracting SELinux labels"
  250. default n
  251. depends on TAR && SELINUX
  252. help
  253. With this option busybox supports restoring SELinux labels
  254. when extracting files from tar archives.
  255. config UNCOMPRESS
  256. bool "uncompress"
  257. default n
  258. help
  259. uncompress is used to decompress archives created by compress.
  260. Not much used anymore, replaced by gzip/gunzip.
  261. config UNLZMA
  262. bool "unlzma"
  263. default n
  264. help
  265. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  266. compression algorithm, and range coding. Compression
  267. is generally considerably better than that achieved by the bzip2
  268. compressors.
  269. The BusyBox unlzma applet is limited to de-compression only.
  270. On an x86 system, this applet adds about 4K.
  271. Unless you have a specific application which requires unlzma, you
  272. should probably say N here.
  273. config FEATURE_LZMA_FAST
  274. bool "Optimize unlzma for speed"
  275. default n
  276. depends on UNLZMA
  277. help
  278. This option reduces decompression time by about 25% at the cost of
  279. a 1K bigger binary.
  280. config UNZIP
  281. bool "unzip"
  282. default n
  283. help
  284. unzip will list or extract files from a ZIP archive,
  285. commonly found on DOS/WIN systems. The default behavior
  286. (with no options) is to extract the archive into the
  287. current directory. Use the `-d' option to extract to a
  288. directory of your choice.
  289. endmenu