3
0

Config.in 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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 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 CONFIG_FEATURE_AR_LONG_FILENAMES
  26. bool " Enable support for long filenames (not need for debs)"
  27. default n
  28. depends on CONFIG_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 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 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 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 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 CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
  74. bool " extract only (-x)"
  75. default n
  76. depends on CONFIG_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 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 CONFIG_FEATURE_GUNZIP_UNCOMPRESS
  89. bool " Uncompress support"
  90. default n
  91. depends on CONFIG_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 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 CONFIG_RPM2CPIO
  103. bool "rpm2cpio"
  104. default n
  105. help
  106. Converts an RPM file into a CPIO archive.
  107. config CONFIG_RPM
  108. bool "rpm"
  109. default n
  110. help
  111. Mini RPM applet - queries and extracts
  112. config 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 CONFIG_FEATURE_TAR_CREATE
  120. bool " Enable archive creation"
  121. default y
  122. depends on CONFIG_TAR
  123. help
  124. If you enable this option you'll be able to create
  125. tar archives using the `-c' option.
  126. config CONFIG_FEATURE_TAR_BZIP2
  127. bool " Enable -j option to handle .tar.bz2 files"
  128. default n
  129. depends on CONFIG_TAR
  130. help
  131. If you enable this option you'll be able to extract
  132. archives compressed with bzip2.
  133. config CONFIG_FEATURE_TAR_FROM
  134. bool " Enable -X (exclude from) and -T (include from) options)"
  135. default n
  136. depends on CONFIG_TAR
  137. help
  138. If you enable this option you'll be able to specify
  139. a list of files to include or exclude from an archive.
  140. config CONFIG_FEATURE_TAR_GZIP
  141. bool " Enable -z option"
  142. default y
  143. depends on CONFIG_TAR
  144. help
  145. If you enable this option tar will be able to call gzip,
  146. when creating or extracting tar gziped archives.
  147. config CONFIG_FEATURE_TAR_COMPRESS
  148. bool " Enable -Z option"
  149. default n
  150. depends on CONFIG_TAR
  151. help
  152. If you enable this option tar will be able to call uncompress,
  153. when extracting .tar.Z archives.
  154. config CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY
  155. bool " Enable support for old tar header format"
  156. default N
  157. depends on CONFIG_TAR
  158. help
  159. This option is required to unpack archives created in
  160. the old GNU format; help to kill this old format by
  161. repacking your ancient archives with the new format.
  162. config CONFIG_FEATURE_TAR_GNU_EXTENSIONS
  163. bool " Enable support for some GNU tar extensions"
  164. default y
  165. depends on CONFIG_TAR
  166. help
  167. With this option busybox supports GNU long filenames and
  168. linknames.
  169. config CONFIG_FEATURE_TAR_LONG_OPTIONS
  170. bool " Enable long options"
  171. default n
  172. depends on CONFIG_TAR
  173. help
  174. Enable use of long options, increases size by about 400 Bytes
  175. config CONFIG_UNCOMPRESS
  176. bool "uncompress"
  177. default n
  178. help
  179. uncompress is used to decompress archives created by compress.
  180. Not much used anymore, replaced by gzip/gunzip.
  181. config CONFIG_UNZIP
  182. bool "unzip"
  183. default n
  184. help
  185. unzip will list or extract files from a ZIP archive,
  186. commonly found on DOS/WIN systems. The default behavior
  187. (with no options) is to extract the archive into the
  188. current directory. Use the `-d' option to extract to a
  189. directory of your choice.
  190. comment "Common options for cpio and tar"
  191. depends on CONFIG_CPIO || CONFIG_TAR
  192. config CONFIG_FEATURE_UNARCHIVE_TAPE
  193. bool " Enable tape drive support"
  194. default n
  195. depends on CONFIG_CPIO || CONFIG_TAR
  196. help
  197. I don't think this is needed anymore.
  198. comment "Common options for dpkg and dpkg_deb"
  199. depends on CONFIG_DPKG || CONFIG_DPKG_DEB
  200. config CONFIG_FEATURE_DEB_TAR_GZ
  201. bool " gzip debian packages (normal)"
  202. default y if CONFIG_DPKG || CONFIG_DPKG_DEB
  203. depends on CONFIG_DPKG || CONFIG_DPKG_DEB
  204. help
  205. This is the default compression method inside the debian ar file.
  206. If you want compatibility with standard .deb's you should say yes here.
  207. config CONFIG_FEATURE_DEB_TAR_BZ2
  208. bool " bzip2 debian packages"
  209. default n
  210. depends on CONFIG_DPKG || CONFIG_DPKG_DEB
  211. help
  212. This allows dpkg and dpkg-deb to extract deb's that are compressed internally
  213. with bzip2 instead of gzip.
  214. You only want this if you are creating your own custom debian packages that
  215. use an internal control.tar.bz2 or data.tar.bz2.
  216. endmenu