Config.in 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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 need for debs)"
  47. default n
  48. depends on AR
  49. help
  50. By default the ar format can only store the first 15 characters of
  51. 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 BUNZIP2
  55. bool "bunzip2"
  56. default n
  57. help
  58. bunzip2 is a compression utility using the Burrows-Wheeler block
  59. sorting text compression algorithm, and Huffman coding. Compression
  60. is generally considerably better than that achieved by more
  61. conventional LZ77/LZ78-based compressors, and approaches the
  62. performance of the PPM family of statistical compressors.
  63. Unless you have a specific application which requires bunzip2, you
  64. should probably say N here.
  65. config BZIP2
  66. bool "bzip2"
  67. default n
  68. help
  69. bzip2 is a compression utility using the Burrows-Wheeler block
  70. sorting text compression algorithm, and Huffman coding. Compression
  71. is generally considerably better than that achieved by more
  72. conventional LZ77/LZ78-based compressors, and approaches the
  73. performance of the PPM family of statistical compressors.
  74. Unless you have a specific application which requires bzip2, you
  75. should probably say N here.
  76. config CPIO
  77. bool "cpio"
  78. default n
  79. help
  80. cpio is an archival utility program used to create, modify, and
  81. extract contents from archives.
  82. cpio has 110 bytes of overheads for every stored file.
  83. This implementation of cpio can extract cpio archives created in the
  84. "newc" or "crc" format, it cannot create or modify them.
  85. Unless you have a specific application which requires cpio, you
  86. should probably say N here.
  87. config FEATURE_CPIO_O
  88. bool "Support for archive creation"
  89. default n
  90. depends on CPIO
  91. help
  92. This implementation of cpio can create cpio archives in the "newc"
  93. format only.
  94. config FEATURE_CPIO_P
  95. bool "Support for passthrough mode"
  96. default n
  97. depends on FEATURE_CPIO_O
  98. help
  99. Passthrough mode. Rarely used.
  100. config DPKG
  101. bool "dpkg"
  102. default n
  103. select FEATURE_SEAMLESS_GZ
  104. help
  105. dpkg is a medium-level tool to install, build, remove and manage
  106. Debian packages.
  107. This implementation of dpkg has a number of limitations,
  108. you should use the official dpkg if possible.
  109. config DPKG_DEB
  110. bool "dpkg_deb"
  111. default n
  112. select FEATURE_SEAMLESS_GZ
  113. help
  114. dpkg-deb unpacks and provides information about Debian archives.
  115. This implementation of dpkg-deb cannot pack archives.
  116. Unless you have a specific application which requires dpkg-deb,
  117. say N here.
  118. config FEATURE_DPKG_DEB_EXTRACT_ONLY
  119. bool "Extract only (-x)"
  120. default n
  121. depends on DPKG_DEB
  122. help
  123. This reduces dpkg-deb to the equivalent of
  124. "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
  125. of the extra dpkg-deb, ar or tar options are needed, they are linked
  126. to internally.
  127. config GUNZIP
  128. bool "gunzip"
  129. default n
  130. help
  131. gunzip is used to decompress archives created by gzip.
  132. You can use the `-t' option to test the integrity of
  133. an archive, without decompressing it.
  134. config GZIP
  135. bool "gzip"
  136. default n
  137. help
  138. gzip is used to compress files.
  139. It's probably the most widely used UNIX compression program.
  140. config RPM2CPIO
  141. bool "rpm2cpio"
  142. default n
  143. help
  144. Converts an RPM file into a CPIO archive.
  145. config RPM
  146. bool "rpm"
  147. default n
  148. help
  149. Mini RPM applet - queries and extracts RPM packages.
  150. config TAR
  151. bool "tar"
  152. default n
  153. help
  154. tar is an archiving program. It's commonly used with gzip to
  155. create compressed archives. It's probably the most widely used
  156. UNIX archive program.
  157. if TAR
  158. config FEATURE_TAR_CREATE
  159. bool "Enable archive creation"
  160. default y
  161. depends on TAR
  162. help
  163. If you enable this option you'll be able to create
  164. tar archives using the `-c' option.
  165. config FEATURE_TAR_AUTODETECT
  166. bool "Autodetect gz/bz2 compressed tarballs"
  167. default n
  168. depends on FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA
  169. help
  170. With this option tar can automatically detect gzip/bzip2 compressed
  171. tarballs. Currently it works only on files (not pipes etc).
  172. config FEATURE_TAR_FROM
  173. bool "Enable -X (exclude from) and -T (include from) options)"
  174. default n
  175. depends on TAR
  176. help
  177. If you enable this option you'll be able to specify
  178. a list of files to include or exclude from an archive.
  179. config FEATURE_TAR_OLDGNU_COMPATIBILITY
  180. bool "Support for old tar header format"
  181. default N
  182. depends on TAR
  183. help
  184. This option is required to unpack archives created in
  185. the old GNU format; help to kill this old format by
  186. repacking your ancient archives with the new format.
  187. config FEATURE_TAR_OLDSUN_COMPATIBILITY
  188. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  189. default N
  190. depends on TAR
  191. help
  192. This option is required to unpack archives created by some old
  193. version of Sun's tar (it was calculating checksum using signed
  194. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  195. tarballs still exist.
  196. config FEATURE_TAR_GNU_EXTENSIONS
  197. bool "Support for GNU tar extensions (long filenames)"
  198. default y
  199. depends on TAR
  200. help
  201. With this option busybox supports GNU long filenames and
  202. linknames.
  203. config FEATURE_TAR_LONG_OPTIONS
  204. bool "Enable long options"
  205. default n
  206. depends on TAR && GETOPT_LONG
  207. help
  208. Enable use of long options, increases size by about 400 Bytes
  209. config FEATURE_TAR_UNAME_GNAME
  210. bool "Enable use of user and group names"
  211. default n
  212. depends on TAR
  213. help
  214. Enables use of user and group names in tar. This affects contents
  215. listings (-t) and preserving permissions when unpacking (-p).
  216. +200 bytes.
  217. endif #tar
  218. config UNCOMPRESS
  219. bool "uncompress"
  220. default n
  221. help
  222. uncompress is used to decompress archives created by compress.
  223. Not much used anymore, replaced by gzip/gunzip.
  224. config UNLZMA
  225. bool "unlzma"
  226. default n
  227. help
  228. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  229. compression algorithm, and range coding. Compression
  230. is generally considerably better than that achieved by the bzip2
  231. compressors.
  232. The BusyBox unlzma applet is limited to de-compression only.
  233. On an x86 system, this applet adds about 4K.
  234. Unless you have a specific application which requires unlzma, you
  235. should probably say N here.
  236. config FEATURE_LZMA_FAST
  237. bool "Optimize unlzma for speed"
  238. default n
  239. depends on UNLZMA
  240. help
  241. This option reduces decompression time by about 33% at the cost of
  242. a 2K bigger binary.
  243. config UNZIP
  244. bool "unzip"
  245. default n
  246. help
  247. unzip will list or extract files from a ZIP archive,
  248. commonly found on DOS/WIN systems. The default behavior
  249. (with no options) is to extract the archive into the
  250. current directory. Use the `-d' option to extract to a
  251. directory of your choice.
  252. endmenu