busybox: update to 1.22.1
[openwrt.git] / package / utils / busybox / config / archival / Config.in
1 # DO NOT EDIT. This file is generated from Config.src
2 #
3 # For a description of the syntax of this configuration file,
4 # see scripts/kbuild/config-language.txt.
5 #
6
7 menu "Archival Utilities"
8
9 config BUSYBOX_CONFIG_FEATURE_SEAMLESS_XZ
10         bool "Make tar, rpm, modprobe etc understand .xz data"
11         default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_XZ
12         help
13           Make tar, rpm, modprobe etc understand .xz data.
14
15 config BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA
16         bool "Make tar, rpm, modprobe etc understand .lzma data"
17         default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_LZMA
18         help
19           Make tar, rpm, modprobe etc understand .lzma data.
20
21 config BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2
22         bool "Make tar, rpm, modprobe etc understand .bz2 data"
23         default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_BZ2
24         help
25           Make tar, rpm, modprobe etc understand .bz2 data.
26
27 config BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
28         bool "Make tar, rpm, modprobe etc understand .gz data"
29         default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_GZ
30         help
31           Make tar, rpm, modprobe etc understand .gz data.
32
33 config BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z
34         bool "tar, rpm, modprobe etc understand .Z data"
35         default BUSYBOX_DEFAULT_FEATURE_SEAMLESS_Z
36         help
37           Make tar, rpm, modprobe etc understand .Z data.
38
39 config BUSYBOX_CONFIG_AR
40         bool "ar"
41         default BUSYBOX_DEFAULT_AR  # needs to be improved to be able to replace binutils ar
42         help
43           ar is an archival utility program used to create, modify, and
44           extract contents from archives. An archive is a single file holding
45           a collection of other files in a structure that makes it possible to
46           retrieve the original individual files (called archive members).
47           The original files' contents, mode (permissions), timestamp, owner,
48           and group are preserved in the archive, and can be restored on
49           extraction.
50
51           The stored filename is limited to 15 characters. (for more information
52           see long filename support).
53           ar has 60 bytes of overheads for every stored file.
54
55           This implementation of ar can extract archives, it cannot create or
56           modify them.
57           On an x86 system, the ar applet adds about 1K.
58
59           Unless you have a specific application which requires ar, you should
60           probably say N here.
61
62 config BUSYBOX_CONFIG_FEATURE_AR_LONG_FILENAMES
63         bool "Support for long filenames (not needed for debs)"
64         default BUSYBOX_DEFAULT_FEATURE_AR_LONG_FILENAMES
65         depends on BUSYBOX_CONFIG_AR
66         help
67           By default the ar format can only store the first 15 characters
68           of the filename, this option removes that limitation.
69           It supports the GNU ar long filename method which moves multiple long
70           filenames into a the data section of a new ar entry.
71
72 config BUSYBOX_CONFIG_FEATURE_AR_CREATE
73         bool "Support archive creation"
74         default BUSYBOX_DEFAULT_FEATURE_AR_CREATE
75         depends on BUSYBOX_CONFIG_AR
76         help
77           This enables archive creation (-c and -r) with busybox ar.
78 config BUSYBOX_CONFIG_UNCOMPRESS
79         bool "uncompress"
80         default BUSYBOX_DEFAULT_UNCOMPRESS
81         help
82           uncompress is used to decompress archives created by compress.
83           Not much used anymore, replaced by gzip/gunzip.
84 config BUSYBOX_CONFIG_GUNZIP
85         bool "gunzip"
86         default BUSYBOX_DEFAULT_GUNZIP
87         help
88           gunzip is used to decompress archives created by gzip.
89           You can use the `-t' option to test the integrity of
90           an archive, without decompressing it.
91 config BUSYBOX_CONFIG_BUNZIP2
92         bool "bunzip2"
93         default BUSYBOX_DEFAULT_BUNZIP2
94         help
95           bunzip2 is a compression utility using the Burrows-Wheeler block
96           sorting text compression algorithm, and Huffman coding. Compression
97           is generally considerably better than that achieved by more
98           conventional LZ77/LZ78-based compressors, and approaches the
99           performance of the PPM family of statistical compressors.
100
101           Unless you have a specific application which requires bunzip2, you
102           should probably say N here.
103 config BUSYBOX_CONFIG_UNLZMA
104         bool "unlzma"
105         default BUSYBOX_DEFAULT_UNLZMA
106         help
107           unlzma is a compression utility using the Lempel-Ziv-Markov chain
108           compression algorithm, and range coding. Compression
109           is generally considerably better than that achieved by the bzip2
110           compressors.
111
112           The BusyBox unlzma applet is limited to decompression only.
113           On an x86 system, this applet adds about 4K.
114
115 config BUSYBOX_CONFIG_FEATURE_LZMA_FAST
116         bool "Optimize unlzma for speed"
117         default BUSYBOX_DEFAULT_FEATURE_LZMA_FAST
118         depends on BUSYBOX_CONFIG_UNLZMA
119         help
120           This option reduces decompression time by about 25% at the cost of
121           a 1K bigger binary.
122
123 config BUSYBOX_CONFIG_LZMA
124         bool "Provide lzma alias which supports only unpacking"
125         default BUSYBOX_DEFAULT_LZMA
126         depends on BUSYBOX_CONFIG_UNLZMA
127         help
128           Enable this option if you want commands like "lzma -d" to work.
129           IOW: you'll get lzma applet, but it will always require -d option.
130 config BUSYBOX_CONFIG_UNXZ
131         bool "unxz"
132         default BUSYBOX_DEFAULT_UNXZ
133         help
134           unxz is a unlzma successor.
135
136 config BUSYBOX_CONFIG_XZ
137         bool "Provide xz alias which supports only unpacking"
138         default BUSYBOX_DEFAULT_XZ
139         depends on BUSYBOX_CONFIG_UNXZ
140         help
141           Enable this option if you want commands like "xz -d" to work.
142           IOW: you'll get xz applet, but it will always require -d option.
143 config BUSYBOX_CONFIG_BZIP2
144         bool "bzip2"
145         default BUSYBOX_DEFAULT_BZIP2
146         help
147           bzip2 is a compression utility using the Burrows-Wheeler block
148           sorting text compression algorithm, and Huffman coding. Compression
149           is generally considerably better than that achieved by more
150           conventional LZ77/LZ78-based compressors, and approaches the
151           performance of the PPM family of statistical compressors.
152
153           Unless you have a specific application which requires bzip2, you
154           should probably say N here.
155 config BUSYBOX_CONFIG_CPIO
156         bool "cpio"
157         default BUSYBOX_DEFAULT_CPIO
158         help
159           cpio is an archival utility program used to create, modify, and
160           extract contents from archives.
161           cpio has 110 bytes of overheads for every stored file.
162
163           This implementation of cpio can extract cpio archives created in the
164           "newc" or "crc" format, it cannot create or modify them.
165
166           Unless you have a specific application which requires cpio, you
167           should probably say N here.
168
169 config BUSYBOX_CONFIG_FEATURE_CPIO_O
170         bool "Support for archive creation"
171         default BUSYBOX_DEFAULT_FEATURE_CPIO_O
172         depends on BUSYBOX_CONFIG_CPIO
173         help
174           This implementation of cpio can create cpio archives in the "newc"
175           format only.
176
177 config BUSYBOX_CONFIG_FEATURE_CPIO_P
178         bool "Support for passthrough mode"
179         default BUSYBOX_DEFAULT_FEATURE_CPIO_P
180         depends on BUSYBOX_CONFIG_FEATURE_CPIO_O
181         help
182           Passthrough mode. Rarely used.
183 config BUSYBOX_CONFIG_DPKG
184         bool "dpkg"
185         default BUSYBOX_DEFAULT_DPKG
186         select BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
187         help
188           dpkg is a medium-level tool to install, build, remove and manage
189           Debian packages.
190
191           This implementation of dpkg has a number of limitations,
192           you should use the official dpkg if possible.
193 config BUSYBOX_CONFIG_DPKG_DEB
194         bool "dpkg_deb"
195         default BUSYBOX_DEFAULT_DPKG_DEB
196         select BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ
197         help
198           dpkg-deb unpacks and provides information about Debian archives.
199
200           This implementation of dpkg-deb cannot pack archives.
201
202           Unless you have a specific application which requires dpkg-deb,
203           say N here.
204
205 config BUSYBOX_CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY
206         bool "Extract only (-x)"
207         default BUSYBOX_DEFAULT_FEATURE_DPKG_DEB_EXTRACT_ONLY
208         depends on BUSYBOX_CONFIG_DPKG_DEB
209         help
210           This reduces dpkg-deb to the equivalent of
211           "ar -p <deb> data.tar.gz | tar -zx". However it saves space as none
212           of the extra dpkg-deb, ar or tar options are needed, they are linked
213           to internally.
214 config BUSYBOX_CONFIG_GZIP
215         bool "gzip"
216         default BUSYBOX_DEFAULT_GZIP
217         help
218           gzip is used to compress files.
219           It's probably the most widely used UNIX compression program.
220
221 config BUSYBOX_CONFIG_FEATURE_GZIP_LONG_OPTIONS
222         bool "Enable long options"
223         default BUSYBOX_DEFAULT_FEATURE_GZIP_LONG_OPTIONS
224         depends on BUSYBOX_CONFIG_GZIP && BUSYBOX_CONFIG_LONG_OPTS
225         help
226           Enable use of long options, increases size by about 106 Bytes
227
228 config BUSYBOX_CONFIG_GZIP_FAST
229         int "Trade memory for gzip speed (0:small,slow - 2:fast,big)"
230         default BUSYBOX_DEFAULT_GZIP_FAST
231         range 0 2
232         depends on BUSYBOX_CONFIG_GZIP
233         help
234           Enable big memory options for gzip.
235           0: small buffers, small hash-tables
236           1: larger buffers, larger hash-tables
237           2: larger buffers, largest hash-tables
238           Larger models may give slightly better compression
239 config BUSYBOX_CONFIG_LZOP
240         bool "lzop"
241         default BUSYBOX_DEFAULT_LZOP
242         help
243           Lzop compression/decompresion.
244
245 config BUSYBOX_CONFIG_LZOP_COMPR_HIGH
246         bool "lzop compression levels 7,8,9 (not very useful)"
247         default BUSYBOX_DEFAULT_LZOP_COMPR_HIGH
248         depends on BUSYBOX_CONFIG_LZOP
249         help
250           High levels (7,8,9) of lzop compression. These levels
251           are actually slower than gzip at equivalent compression ratios
252           and take up 3.2K of code.
253 config BUSYBOX_CONFIG_RPM
254         bool "rpm"
255         default BUSYBOX_DEFAULT_RPM
256         help
257           Mini RPM applet - queries and extracts RPM packages.
258 config BUSYBOX_CONFIG_RPM2CPIO
259         bool "rpm2cpio"
260         default BUSYBOX_DEFAULT_RPM2CPIO
261         help
262           Converts a RPM file into a CPIO archive.
263 config BUSYBOX_CONFIG_TAR
264         bool "tar"
265         default BUSYBOX_DEFAULT_TAR
266         help
267           tar is an archiving program. It's commonly used with gzip to
268           create compressed archives. It's probably the most widely used
269           UNIX archive program.
270
271 config BUSYBOX_CONFIG_FEATURE_TAR_CREATE
272         bool "Enable archive creation"
273         default BUSYBOX_DEFAULT_FEATURE_TAR_CREATE
274         depends on BUSYBOX_CONFIG_TAR
275         help
276           If you enable this option you'll be able to create
277           tar archives using the `-c' option.
278
279 config BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT
280         bool "Autodetect compressed tarballs"
281         default BUSYBOX_DEFAULT_FEATURE_TAR_AUTODETECT
282         depends on BUSYBOX_CONFIG_TAR && (BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z || BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ || BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 || BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA || BUSYBOX_CONFIG_FEATURE_SEAMLESS_XZ)
283         help
284           With this option tar can automatically detect compressed
285           tarballs. Currently it works only on files (not pipes etc).
286
287 config BUSYBOX_CONFIG_FEATURE_TAR_FROM
288         bool "Enable -X (exclude from) and -T (include from) options)"
289         default BUSYBOX_DEFAULT_FEATURE_TAR_FROM
290         depends on BUSYBOX_CONFIG_TAR
291         help
292           If you enable this option you'll be able to specify
293           a list of files to include or exclude from an archive.
294
295 config BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY
296         bool "Support for old tar header format"
297         default BUSYBOX_DEFAULT_FEATURE_TAR_OLDGNU_COMPATIBILITY
298         depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
299         help
300           This option is required to unpack archives created in
301           the old GNU format; help to kill this old format by
302           repacking your ancient archives with the new format.
303
304 config BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY
305         bool "Enable untarring of tarballs with checksums produced by buggy Sun tar"
306         default BUSYBOX_DEFAULT_FEATURE_TAR_OLDSUN_COMPATIBILITY
307         depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
308         help
309           This option is required to unpack archives created by some old
310           version of Sun's tar (it was calculating checksum using signed
311           arithmetic). It is said to be fixed in newer Sun tar, but "old"
312           tarballs still exist.
313
314 config BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS
315         bool "Support for GNU tar extensions (long filenames)"
316         default BUSYBOX_DEFAULT_FEATURE_TAR_GNU_EXTENSIONS
317         depends on BUSYBOX_CONFIG_TAR || BUSYBOX_CONFIG_DPKG
318         help
319           With this option busybox supports GNU long filenames and
320           linknames.
321
322 config BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
323         bool "Enable long options"
324         default BUSYBOX_DEFAULT_FEATURE_TAR_LONG_OPTIONS
325         depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_LONG_OPTS
326         help
327           Enable use of long options, increases size by about 400 Bytes
328
329 config BUSYBOX_CONFIG_FEATURE_TAR_TO_COMMAND
330         bool "Support for writing to an external program"
331         default BUSYBOX_DEFAULT_FEATURE_TAR_TO_COMMAND
332         depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
333         help
334           If you enable this option you'll be able to instruct tar to send
335           the contents of each extracted file to the standard input of an
336           external program.
337
338 config BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME
339         bool "Enable use of user and group names"
340         default BUSYBOX_DEFAULT_FEATURE_TAR_UNAME_GNAME
341         depends on BUSYBOX_CONFIG_TAR
342         help
343           Enables use of user and group names in tar. This affects contents
344           listings (-t) and preserving permissions when unpacking (-p).
345           +200 bytes.
346
347 config BUSYBOX_CONFIG_FEATURE_TAR_NOPRESERVE_TIME
348         bool "Enable -m (do not preserve time) option"
349         default BUSYBOX_DEFAULT_FEATURE_TAR_NOPRESERVE_TIME
350         depends on BUSYBOX_CONFIG_TAR
351         help
352           With this option busybox supports GNU tar -m
353           (do not preserve time) option.
354
355 config BUSYBOX_CONFIG_FEATURE_TAR_SELINUX
356         bool "Support for extracting SELinux labels"
357         default BUSYBOX_DEFAULT_FEATURE_TAR_SELINUX
358         depends on BUSYBOX_CONFIG_TAR && BUSYBOX_CONFIG_SELINUX
359         help
360           With this option busybox supports restoring SELinux labels
361           when extracting files from tar archives.
362 config BUSYBOX_CONFIG_UNZIP
363         bool "unzip"
364         default BUSYBOX_DEFAULT_UNZIP
365         help
366           unzip will list or extract files from a ZIP archive,
367           commonly found on DOS/WIN systems. The default behavior
368           (with no options) is to extract the archive into the
369           current directory. Use the `-d' option to extract to a
370           directory of your choice.
371
372 endmenu