Skip to content

Commit

Permalink
lib/xz: enable all filters by default in Kconfig
Browse files Browse the repository at this point in the history
This restores the old behavior that existed before 2013-02-22, when
changes were made by 64dbfb4 ("decompressors: drop dependency on
CONFIG_EXPERT") and 5dc49c7 ("decompressors: make the default
XZ_DEC_* config match the selected architecture").

Disabling the filters only makes sense on embedded systems.

Signed-off-by: Lasse Collin <[email protected]>
Acked-by: Kyle McMartin <[email protected]>
Cc: Florian Fainelli <[email protected]>
Cc: Phillip Lougher <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Larhzu authored and torvalds committed Jun 4, 2014
1 parent 1812062 commit bf4d064
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions lib/xz/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,33 +9,33 @@ config XZ_DEC
if XZ_DEC

config XZ_DEC_X86
bool "x86 BCJ filter decoder"
default y if X86
bool "x86 BCJ filter decoder" if EXPERT
default y
select XZ_DEC_BCJ

config XZ_DEC_POWERPC
bool "PowerPC BCJ filter decoder"
default y if PPC
bool "PowerPC BCJ filter decoder" if EXPERT
default y
select XZ_DEC_BCJ

config XZ_DEC_IA64
bool "IA-64 BCJ filter decoder"
default y if IA64
bool "IA-64 BCJ filter decoder" if EXPERT
default y
select XZ_DEC_BCJ

config XZ_DEC_ARM
bool "ARM BCJ filter decoder"
default y if ARM
bool "ARM BCJ filter decoder" if EXPERT
default y
select XZ_DEC_BCJ

config XZ_DEC_ARMTHUMB
bool "ARM-Thumb BCJ filter decoder"
default y if (ARM && ARM_THUMB)
bool "ARM-Thumb BCJ filter decoder" if EXPERT
default y
select XZ_DEC_BCJ

config XZ_DEC_SPARC
bool "SPARC BCJ filter decoder"
default y if SPARC
bool "SPARC BCJ filter decoder" if EXPERT
default y
select XZ_DEC_BCJ

endif
Expand Down

0 comments on commit bf4d064

Please sign in to comment.