Config.in 11 KB

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