ln: correct 'ln -T' usage message
[oweals/busybox.git] / archival / Config.src
1 #
2 # For a description of the syntax of this configuration file,
3 # see docs/Kconfig-language.txt.
4 #
5
6 menu "Archival Utilities"
7
8 config FEATURE_SEAMLESS_XZ
9         bool "Make tar, rpm, modprobe etc understand .xz data"
10         default y
11
12 config FEATURE_SEAMLESS_LZMA
13         bool "Make tar, rpm, modprobe etc understand .lzma data"
14         default y
15
16 config FEATURE_SEAMLESS_BZ2
17         bool "Make tar, rpm, modprobe etc understand .bz2 data"
18         default y
19
20 config FEATURE_SEAMLESS_GZ
21         bool "Make tar, rpm, modprobe etc understand .gz data"
22         default y
23
24 config FEATURE_SEAMLESS_Z
25         bool "Make tar, rpm, modprobe etc understand .Z data"
26         default n  # it is ancient
27
28 INSERT
29
30 config FEATURE_LZMA_FAST
31         bool "Optimize lzma for speed"
32         default n
33         depends on UNLZMA || LZCAT || LZMA || FEATURE_SEAMLESS_LZMA
34         help
35         This option reduces decompression time by about 25% at the cost of
36         a 1K bigger binary.
37
38 endmenu