Config.in 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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 "Enable 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. The BusyBox bunzip2 applet is limited to de-compression only.
  44. On an x86 system, this applet adds about 11K.
  45. Unless you have a specific application which requires bunzip2, you
  46. should probably say N here.
  47. config CPIO
  48. bool "cpio"
  49. default n
  50. help
  51. cpio is an archival utility program used to create, modify, and extract
  52. contents from archives.
  53. cpio has 110 bytes of overheads for every stored file.
  54. This implementation of cpio can extract cpio archives created in the
  55. "newc" or "crc" format, it cannot create or modify them.
  56. Unless you have a specific application which requires cpio, you should
  57. probably say N here.
  58. config DPKG
  59. bool "dpkg"
  60. default n
  61. help
  62. dpkg is a medium-level tool to install, build, remove and manage Debian packages.
  63. This implementation of dpkg has a number of limitations, you should use the
  64. official dpkg if possible.
  65. config DPKG_DEB
  66. bool "dpkg_deb"
  67. default n
  68. help
  69. dpkg-deb packs, unpacks and provides information about Debian archives.
  70. This implementation of dpkg-deb cannot pack archives.
  71. Unless you have a specific application which requires dpkg-deb, you should
  72. probably say N here.
  73. config FEATURE_DPKG_DEB_EXTRACT_ONLY
  74. bool "extract only (-x)"
  75. default n
  76. depends on DPKG_DEB
  77. help
  78. This reduces dpkg-deb to the equivalent of "ar -p <deb> data.tar.gz | tar -zx".
  79. However it saves space as none of the extra dpkg-deb, ar or tar options are
  80. needed, they are linked to internally.
  81. config GUNZIP
  82. bool "gunzip"
  83. default n
  84. help
  85. gunzip is used to decompress archives created by gzip.
  86. You can use the `-t' option to test the integrity of
  87. an archive, without decompressing it.
  88. config FEATURE_GUNZIP_UNCOMPRESS
  89. bool "Uncompress support"
  90. default n
  91. depends on GUNZIP
  92. help
  93. Enable if you want gunzip to have the ability to decompress
  94. archives created by the program compress (not much
  95. used anymore).
  96. config GZIP
  97. bool "gzip"
  98. default n
  99. help
  100. gzip is used to compress files.
  101. It's probably the most widely used UNIX compression program.
  102. config RPM2CPIO
  103. bool "rpm2cpio"
  104. default n
  105. help
  106. Converts an RPM file into a CPIO archive.
  107. config RPM
  108. bool "rpm"
  109. default n
  110. help
  111. Mini RPM applet - queries and extracts
  112. config TAR
  113. bool "tar"
  114. default n
  115. help
  116. tar is an archiving program. It's commonly used with gzip to
  117. create compressed archives. It's probably the most widely used
  118. UNIX archive program.
  119. config FEATURE_TAR_CREATE
  120. bool "Enable archive creation"
  121. default y
  122. depends on TAR
  123. help
  124. If you enable this option you'll be able to create
  125. tar archives using the `-c' option.
  126. config FEATURE_TAR_BZIP2
  127. bool "Enable -j option to handle .tar.bz2 files"
  128. default n
  129. depends on TAR
  130. help
  131. If you enable this option you'll be able to extract
  132. archives compressed with bzip2.
  133. config FEATURE_TAR_LZMA
  134. bool "Enable -a option to handle .tar.lzma files"
  135. default n
  136. depends on TAR
  137. help
  138. If you enable this option you'll be able to extract
  139. archives compressed with lzma.
  140. config FEATURE_TAR_FROM
  141. bool "Enable -X (exclude from) and -T (include from) options)"
  142. default n
  143. depends on TAR
  144. help
  145. If you enable this option you'll be able to specify
  146. a list of files to include or exclude from an archive.
  147. config FEATURE_TAR_GZIP
  148. bool "Enable -z option"
  149. default y
  150. depends on TAR
  151. help
  152. If you enable this option tar will be able to call gzip,
  153. when creating or extracting tar gziped archives.
  154. config FEATURE_TAR_COMPRESS
  155. bool "Enable -Z option"
  156. default n
  157. depends on TAR
  158. help
  159. If you enable this option tar will be able to call uncompress,
  160. when extracting .tar.Z archives.
  161. config FEATURE_TAR_OLDGNU_COMPATIBILITY
  162. bool "Enable support for old tar header format"
  163. default N
  164. depends on TAR
  165. help
  166. This option is required to unpack archives created in
  167. the old GNU format; help to kill this old format by
  168. repacking your ancient archives with the new format.
  169. config FEATURE_TAR_GNU_EXTENSIONS
  170. bool "Enable support for some GNU tar extensions"
  171. default y
  172. depends on TAR
  173. help
  174. With this option busybox supports GNU long filenames and
  175. linknames.
  176. config FEATURE_TAR_LONG_OPTIONS
  177. bool "Enable long options"
  178. default n
  179. depends on TAR && GETOPT_LONG
  180. help
  181. Enable use of long options, increases size by about 400 Bytes
  182. config UNCOMPRESS
  183. bool "uncompress"
  184. default n
  185. help
  186. uncompress is used to decompress archives created by compress.
  187. Not much used anymore, replaced by gzip/gunzip.
  188. config UNLZMA
  189. bool "unlzma"
  190. default n
  191. help
  192. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  193. compression algorithm, and range coding. Compression
  194. is generally considerably better than that achieved by the bzip2
  195. compressors.
  196. The BusyBox unlzma applet is limited to de-compression only.
  197. On an x86 system, this applet adds about 4K.
  198. Unless you have a specific application which requires unlzma, you
  199. should probably say N here.
  200. config FEATURE_LZMA_FAST
  201. bool "Optimze unlzma for speed"
  202. default n
  203. depends on UNLZMA
  204. help
  205. This option reduces decompression time by about 33% at the cost of
  206. a 2K bigger binary.
  207. config UNZIP
  208. bool "unzip"
  209. default n
  210. help
  211. unzip will list or extract files from a ZIP archive,
  212. commonly found on DOS/WIN systems. The default behavior
  213. (with no options) is to extract the archive into the
  214. current directory. Use the `-d' option to extract to a
  215. directory of your choice.
  216. comment "Common options for cpio and tar"
  217. depends on CPIO || TAR
  218. config FEATURE_UNARCHIVE_TAPE
  219. bool "Enable tape drive support"
  220. default n
  221. depends on CPIO || TAR
  222. help
  223. I don't think this is needed anymore.
  224. comment "Common options for dpkg and dpkg_deb"
  225. depends on DPKG || DPKG_DEB
  226. config FEATURE_DEB_TAR_GZ
  227. bool "gzip debian packages (normal)"
  228. default y if DPKG || DPKG_DEB
  229. depends on DPKG || DPKG_DEB
  230. help
  231. This is the default compression method inside the debian ar file.
  232. If you want compatibility with standard .deb's you should say yes here.
  233. config FEATURE_DEB_TAR_BZ2
  234. bool "bzip2 debian packages"
  235. default n
  236. depends on DPKG || DPKG_DEB
  237. help
  238. This allows dpkg and dpkg-deb to extract deb's that are compressed internally
  239. with bzip2 instead of gzip.
  240. You only want this if you are creating your own custom debian packages that
  241. use an internal control.tar.bz2 or data.tar.bz2.
  242. config FEATURE_DEB_TAR_LZMA
  243. bool "lzma debian packages"
  244. default n
  245. depends on DPKG || DPKG_DEB
  246. help
  247. This allows dpkg and dpkg-deb to extract deb's that are compressed
  248. internally with lzma instead of gzip.
  249. You only want this if you are creating your own custom debian
  250. packages that use an internal control.tar.lzma or data.tar.lzma.
  251. endmenu