summaryrefslogtreecommitdiff
path: root/archival/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'archival/Config.in')
-rw-r--r--archival/Config.in30
1 files changed, 29 insertions, 1 deletions
diff --git a/archival/Config.in b/archival/Config.in
index deacc2822..4f762e860 100644
--- a/archival/Config.in
+++ b/archival/Config.in
@@ -5,6 +5,12 @@
5 5
6menu "Archival Utilities" 6menu "Archival Utilities"
7 7
8config FEATURE_SEAMLESS_XZ
9 bool "Make tar, rpm, modprobe etc understand .xz data"
10 default n
11 help
12 Make tar, rpm, modprobe etc understand .xz data.
13
8config FEATURE_SEAMLESS_LZMA 14config FEATURE_SEAMLESS_LZMA
9 bool "Make tar, rpm, modprobe etc understand .lzma data" 15 bool "Make tar, rpm, modprobe etc understand .lzma data"
10 default n 16 default n
@@ -225,7 +231,7 @@ config FEATURE_TAR_CREATE
225config FEATURE_TAR_AUTODETECT 231config FEATURE_TAR_AUTODETECT
226 bool "Autodetect compressed tarballs" 232 bool "Autodetect compressed tarballs"
227 default n 233 default n
228 depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA) 234 depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ)
229 help 235 help
230 With this option tar can automatically detect compressed 236 With this option tar can automatically detect compressed
231 tarballs. Currently it works only on files (not pipes etc). 237 tarballs. Currently it works only on files (not pipes etc).
@@ -327,6 +333,28 @@ config FEATURE_LZMA_FAST
327 This option reduces decompression time by about 25% at the cost of 333 This option reduces decompression time by about 25% at the cost of
328 a 1K bigger binary. 334 a 1K bigger binary.
329 335
336config LZMA
337 bool "Provide lzma alias which supports only unpacking"
338 default n
339 depends on UNLZMA
340 help
341 Enable this option if you want commands like "lzma -d" to work.
342 IOW: you'll get lzma applet, but it will always require -d option.
343
344config UNXZ
345 bool "unxz"
346 default n
347 help
348 unxz is a unlzma successor.
349
350config XZ
351 bool "Provide xz alias which supports only unpacking"
352 default n
353 depends on UNXZ
354 help
355 Enable this option if you want commands like "xz -d" to work.
356 IOW: you'll get xz applet, but it will always require -d option.
357
330config UNZIP 358config UNZIP
331 bool "unzip" 359 bool "unzip"
332 default n 360 default n