diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-02-21 16:44:11 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 17:22:26 -0800 |
commit | 64dbfb444c150f5b64979323a197dedc2ec3e02c (patch) | |
tree | 91b036e41f62f7c00e107481de9da07e3b562476 /lib/xz | |
parent | 9d7496296590d57e0745286711aa31ed1b828917 (diff) | |
download | linux-3.10-64dbfb444c150f5b64979323a197dedc2ec3e02c.tar.gz linux-3.10-64dbfb444c150f5b64979323a197dedc2ec3e02c.tar.bz2 linux-3.10-64dbfb444c150f5b64979323a197dedc2ec3e02c.zip |
decompressors: drop dependency on CONFIG_EXPERT
Remove the XZ_DEC_* depedencey on CONFIG_EXPERT as recommended by Lasse
Colin.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Acked-by: Lasse Collin <lasse.collin@tukaani.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/xz')
-rw-r--r-- | lib/xz/Kconfig | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/xz/Kconfig b/lib/xz/Kconfig index 12d2d777f36..8d464706d4e 100644 --- a/lib/xz/Kconfig +++ b/lib/xz/Kconfig @@ -9,32 +9,32 @@ config XZ_DEC if XZ_DEC config XZ_DEC_X86 - bool "x86 BCJ filter decoder" if EXPERT + bool "x86 BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_POWERPC - bool "PowerPC BCJ filter decoder" if EXPERT + bool "PowerPC BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_IA64 - bool "IA-64 BCJ filter decoder" if EXPERT + bool "IA-64 BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_ARM - bool "ARM BCJ filter decoder" if EXPERT + bool "ARM BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_ARMTHUMB - bool "ARM-Thumb BCJ filter decoder" if EXPERT + bool "ARM-Thumb BCJ filter decoder" default y select XZ_DEC_BCJ config XZ_DEC_SPARC - bool "SPARC BCJ filter decoder" if EXPERT + bool "SPARC BCJ filter decoder" default y select XZ_DEC_BCJ |