Config.in 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  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 BUSYBOX_FEATURE_SEAMLESS_LZMA
  7. bool "Make tar, rpm, modprobe etc understand .lzma data"
  8. default y
  9. help
  10. Make tar, rpm, modprobe etc understand .lzma data.
  11. config BUSYBOX_FEATURE_SEAMLESS_BZ2
  12. bool "Make tar, rpm, modprobe etc understand .bz2 data"
  13. default y
  14. help
  15. Make tar, rpm, modprobe etc understand .bz2 data.
  16. config BUSYBOX_FEATURE_SEAMLESS_GZ
  17. bool "Make tar, rpm, modprobe etc understand .gz data"
  18. default y
  19. help
  20. Make tar, rpm, modprobe etc understand .gz data.
  21. config BUSYBOX_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 BUSYBOX_AR
  27. bool "ar"
  28. default n
  29. depends on !ADK_PACKAGE_BINUTILS
  30. help
  31. ar is an archival utility program used to create, modify, and
  32. extract contents from archives. An archive is a single file holding
  33. a collection of other files in a structure that makes it possible to
  34. retrieve the original individual files (called archive members).
  35. The original files' contents, mode (permissions), timestamp, owner,
  36. and group are preserved in the archive, and can be restored on
  37. extraction.
  38. The stored filename is limited to 15 characters. (for more information
  39. see long filename support).
  40. ar has 60 bytes of overheads for every stored file.
  41. This implementation of ar can extract archives, it cannot create or
  42. modify them.
  43. On an x86 system, the ar applet adds about 1K.
  44. Unless you have a specific application which requires ar, you should
  45. probably say N here.
  46. config BUSYBOX_FEATURE_AR_LONG_FILENAMES
  47. bool "Support for long filenames (not needed for debs)"
  48. default n
  49. depends on BUSYBOX_AR
  50. help
  51. By default the ar format can only store the first 15 characters
  52. of the filename, this option removes that limitation.
  53. It supports the GNU ar long filename method which moves multiple long
  54. filenames into a the data section of a new ar entry.
  55. config BUSYBOX_FEATURE_AR_CREATE
  56. bool "Support archive creation"
  57. default n
  58. depends on BUSYBOX_AR
  59. help
  60. This enables archive creation (-c and -r) with busybox ar.
  61. config BUSYBOX_BUNZIP2
  62. bool "bunzip2"
  63. depends on !ADK_PACKAGE_BZIP2
  64. default n
  65. help
  66. bunzip2 is a compression utility using the Burrows-Wheeler block
  67. sorting text compression algorithm, and Huffman coding. Compression
  68. is generally considerably better than that achieved by more
  69. conventional LZ77/LZ78-based compressors, and approaches the
  70. performance of the PPM family of statistical compressors.
  71. Unless you have a specific application which requires bunzip2, you
  72. should probably say N here.
  73. config BUSYBOX_BZIP2
  74. bool "bzip2"
  75. depends on !ADK_PACKAGE_BZIP2
  76. default n
  77. help
  78. bzip2 is a compression utility using the Burrows-Wheeler block
  79. sorting text compression algorithm, and Huffman coding. Compression
  80. is generally considerably better than that achieved by more
  81. conventional LZ77/LZ78-based compressors, and approaches the
  82. performance of the PPM family of statistical compressors.
  83. Unless you have a specific application which requires bzip2, you
  84. should probably say N here.
  85. config BUSYBOX_CPIO
  86. bool "cpio"
  87. depends on !ADK_PACKAGE_CPIO
  88. default n
  89. help
  90. cpio is an archival utility program used to create, modify, and
  91. extract contents from archives.
  92. cpio has 110 bytes of overheads for every stored file.
  93. This implementation of cpio can extract cpio archives created in the
  94. "newc" or "crc" format, it cannot create or modify them.
  95. Unless you have a specific application which requires cpio, you
  96. should probably say N here.
  97. config BUSYBOX_FEATURE_CPIO_O
  98. bool "Support for archive creation"
  99. default n
  100. depends on BUSYBOX_CPIO
  101. help
  102. This implementation of cpio can create cpio archives in the "newc"
  103. format only.
  104. config BUSYBOX_FEATURE_CPIO_P
  105. bool "Support for passthrough mode"
  106. default n
  107. depends on BUSYBOX_FEATURE_CPIO_O
  108. help
  109. Passthrough mode. Rarely used.
  110. config BUSYBOX_DPKG
  111. bool "dpkg"
  112. default n
  113. select BUSYBOX_FEATURE_SEAMLESS_GZ
  114. help
  115. dpkg is a medium-level tool to install, build, remove and manage
  116. Debian packages.
  117. This implementation of dpkg has a number of limitations,
  118. you should use the official dpkg if possible.
  119. config BUSYBOX_DPKG_DEB
  120. bool "dpkg_deb"
  121. default n
  122. select BUSYBOX_FEATURE_SEAMLESS_GZ
  123. help
  124. dpkg-deb unpacks and provides information about Debian archives.
  125. This implementation of dpkg-deb cannot pack archives.
  126. Unless you have a specific application which requires dpkg-deb,
  127. say N here.
  128. config BUSYBOX_FEATURE_DPKG_DEB_EXTRACT_ONLY
  129. bool "Extract only (-x)"
  130. default n
  131. depends on BUSYBOX_DPKG_DEB
  132. help
  133. This reduces dpkg-deb to the equivalent of
  134. "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
  135. of the extra dpkg-deb, ar or tar options are needed, they are linked
  136. to internally.
  137. config BUSYBOX_GUNZIP
  138. bool "gunzip"
  139. default y
  140. help
  141. gunzip is used to decompress archives created by gzip.
  142. You can use the `-t' option to test the integrity of
  143. an archive, without decompressing it.
  144. config BUSYBOX_GZIP
  145. bool "gzip"
  146. default y
  147. help
  148. gzip is used to compress files.
  149. It's probably the most widely used UNIX compression program.
  150. config BUSYBOX_FEATURE_GZIP_LONG_OPTIONS
  151. bool "Enable long options"
  152. default n
  153. depends on BUSYBOX_GZIP && BUSYBOX_LONG_OPTS
  154. help
  155. Enable use of long options, increases size by about 106 Bytes
  156. config BUSYBOX_LZOP
  157. bool "lzop"
  158. default n
  159. help
  160. Lzop compression/decompresion.
  161. config BUSYBOX_LZOP_COMPR_HIGH
  162. bool "lzop complession levels 7,8,9 (not very useful)"
  163. default n
  164. depends on BUSYBOX_LZOP
  165. help
  166. High levels (7,8,9) of lzop compression. These levels
  167. are actually slower than gzip at equivalent compression ratios
  168. and take up 3.2K of code.
  169. config BUSYBOX_IPKG
  170. bool "ipkg"
  171. default y if ADK_TARGET_PACKAGE_IPKG
  172. default n
  173. help
  174. ipkg is the itsy package management system.
  175. config BUSYBOX_RPM2CPIO
  176. bool "rpm2cpio"
  177. depends on !ADK_PACKAGE_RPM
  178. default n
  179. help
  180. Converts an RPM file into a CPIO archive.
  181. config BUSYBOX_RPM
  182. bool "rpm"
  183. depends on !ADK_PACKAGE_RPM
  184. default n
  185. help
  186. Mini RPM applet - queries and extracts RPM packages.
  187. config BUSYBOX_TAR
  188. bool "tar"
  189. depends on !ADK_PACKAGE_TAR
  190. default y
  191. help
  192. tar is an archiving program. It's commonly used with gzip to
  193. create compressed archives. It's probably the most widely used
  194. UNIX archive program.
  195. if TAR
  196. config BUSYBOX_FEATURE_TAR_CREATE
  197. bool "Enable archive creation"
  198. default y
  199. depends on BUSYBOX_TAR
  200. help
  201. If you enable this option you'll be able to create
  202. tar archives using the `-c' option.
  203. config BUSYBOX_FEATURE_TAR_AUTODETECT
  204. bool "Autodetect compressed tarballs"
  205. default y
  206. depends on BUSYBOX_FEATURE_SEAMLESS_Z || BUSYBOX_FEATURE_SEAMLESS_GZ || BUSYBOX_FEATURE_SEAMLESS_BZ2 || BUSYBOX_FEATURE_SEAMLESS_LZMA
  207. help
  208. With this option tar can automatically detect compressed
  209. tarballs. Currently it works only on files (not pipes etc).
  210. config BUSYBOX_FEATURE_TAR_FROM
  211. bool "Enable -X (exclude from) and -T (include from) options)"
  212. default y
  213. depends on BUSYBOX_TAR
  214. help
  215. If you enable this option you'll be able to specify
  216. a list of files to include or exclude from an archive.
  217. config BUSYBOX_FEATURE_TAR_OLDGNU_COMPATIBILITY
  218. bool "Support for old tar header format"
  219. default n
  220. depends on BUSYBOX_TAR
  221. help
  222. This option is required to unpack archives created in
  223. the old GNU format; help to kill this old format by
  224. repacking your ancient archives with the new format.
  225. config BUSYBOX_FEATURE_TAR_OLDSUN_COMPATIBILITY
  226. bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
  227. default n
  228. depends on BUSYBOX_TAR
  229. help
  230. This option is required to unpack archives created by some old
  231. version of Sun's tar (it was calculating checksum using signed
  232. arithmetic). It is said to be fixed in newer Sun tar, but "old"
  233. tarballs still exist.
  234. config BUSYBOX_FEATURE_TAR_GNU_EXTENSIONS
  235. bool "Support for GNU tar extensions (long filenames)"
  236. default y
  237. depends on BUSYBOX_TAR
  238. help
  239. With this option busybox supports GNU long filenames and
  240. linknames.
  241. config BUSYBOX_FEATURE_TAR_LONG_OPTIONS
  242. bool "Enable long options"
  243. default n
  244. depends on BUSYBOX_TAR && BUSYBOX_LONG_OPTS
  245. help
  246. Enable use of long options, increases size by about 400 Bytes
  247. config BUSYBOX_FEATURE_TAR_UNAME_GNAME
  248. bool "Enable use of user and group names"
  249. default y
  250. depends on BUSYBOX_TAR
  251. help
  252. Enables use of user and group names in tar. This affects contents
  253. listings (-t) and preserving permissions when unpacking (-p).
  254. +200 bytes.
  255. config BUSYBOX_FEATURE_TAR_NOPRESERVE_TIME
  256. bool "Enable -m (do not preserve time) option"
  257. default n
  258. depends on BUSYBOX_TAR
  259. help
  260. With this option busybox supports GNU tar -m
  261. (do not preserve time) option.
  262. endif #tar
  263. config BUSYBOX_UNCOMPRESS
  264. bool "uncompress"
  265. default n
  266. help
  267. uncompress is used to decompress archives created by compress.
  268. Not much used anymore, replaced by gzip/gunzip.
  269. config BUSYBOX_UNLZMA
  270. bool "unlzma"
  271. depends on !ADK_PACKAGE_XZ
  272. default n
  273. help
  274. unlzma is a compression utility using the Lempel-Ziv-Markov chain
  275. compression algorithm, and range coding. Compression
  276. is generally considerably better than that achieved by the bzip2
  277. compressors.
  278. The BusyBox unlzma applet is limited to de-compression only.
  279. On an x86 system, this applet adds about 4K.
  280. Unless you have a specific application which requires unlzma, you
  281. should probably say N here.
  282. config BUSYBOX_FEATURE_LZMA_FAST
  283. bool "Optimize unlzma for speed"
  284. default n
  285. depends on BUSYBOX_UNLZMA
  286. help
  287. This option reduces decompression time by about 25% at the cost of
  288. a 1K bigger binary.
  289. config BUSYBOX_LZMA
  290. bool "Provide lzma alias which supports only unpacking"
  291. default n
  292. depends on BUSYBOX_UNLZMA
  293. help
  294. Enable this option if you want commands like "lzma -d" to work.
  295. IOW: you'll get lzma applet, but it will always require -d option.
  296. config BUSYBOX_UNXZ
  297. bool "unxz"
  298. depends on !ADK_PACKAGE_XZ
  299. default n
  300. help
  301. unxz is a unlzma successor.
  302. config BUSYBOX_XZ
  303. bool "Provide xz alias which supports only unpacking"
  304. default n
  305. depends on BUSYBOX_UNXZ
  306. help
  307. Enable this option if you want commands like "xz -d" to work.
  308. IOW: you'll get xz applet, but it will always require -d option.
  309. config BUSYBOX_UNZIP
  310. bool "unzip"
  311. default n
  312. help
  313. unzip will list or extract files from a ZIP archive,
  314. commonly found on DOS/WIN systems. The default behavior
  315. (with no options) is to extract the archive into the
  316. current directory. Use the `-d' option to extract to a
  317. directory of your choice.
  318. endmenu