f560422fa0
Redundant help texts (one which only repeats the description) are deleted. Descriptions and help texts are trimmed. Some config options are moved, even across menus. No config option _names_ are changed. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
31 lines
648 B
Plaintext
31 lines
648 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see scripts/kbuild/config-language.txt.
|
|
#
|
|
|
|
menu "Archival Utilities"
|
|
|
|
config FEATURE_SEAMLESS_XZ
|
|
bool "Make tar, rpm, modprobe etc understand .xz data"
|
|
default y
|
|
|
|
config FEATURE_SEAMLESS_LZMA
|
|
bool "Make tar, rpm, modprobe etc understand .lzma data"
|
|
default y
|
|
|
|
config FEATURE_SEAMLESS_BZ2
|
|
bool "Make tar, rpm, modprobe etc understand .bz2 data"
|
|
default y
|
|
|
|
config FEATURE_SEAMLESS_GZ
|
|
bool "Make tar, rpm, modprobe etc understand .gz data"
|
|
default y
|
|
|
|
config FEATURE_SEAMLESS_Z
|
|
bool "Make tar, rpm, modprobe etc understand .Z data"
|
|
default n # it is ancient
|
|
|
|
INSERT
|
|
|
|
endmenu
|