Config.in 9.7 KB

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