Subject: + lib-xz-enable-all-filters-by-default-in-kconfig.patch added to -mm tree To: lasse.collin@xxxxxxxxxxx,f.fainelli@xxxxxxxxx,kyle@xxxxxxxxxxxxx,phillip@xxxxxxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Wed, 05 Mar 2014 12:21:14 -0800 The patch titled Subject: lib/xz: enable all filters by default in Kconfig has been added to the -mm tree. Its filename is lib-xz-enable-all-filters-by-default-in-kconfig.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/lib-xz-enable-all-filters-by-default-in-kconfig.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/lib-xz-enable-all-filters-by-default-in-kconfig.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Lasse Collin <lasse.collin@xxxxxxxxxxx> Subject: lib/xz: enable all filters by default in Kconfig This restores the old behavior that existed before 2013-02-22. Disabling the filters only makes sense on embedded systems. Signed-off-by: Lasse Collin <lasse.collin@xxxxxxxxxxx> Cc: Kyle McMartin <kyle@xxxxxxxxxxxxx> Cc: Florian Fainelli <f.fainelli@xxxxxxxxx> Cc: Phillip Lougher <phillip@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/xz/Kconfig | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff -puN lib/xz/Kconfig~lib-xz-enable-all-filters-by-default-in-kconfig lib/xz/Kconfig --- a/lib/xz/Kconfig~lib-xz-enable-all-filters-by-default-in-kconfig +++ a/lib/xz/Kconfig @@ -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 _ Patches currently in -mm which might be from lasse.collin@xxxxxxxxxxx are lib-xz-enable-all-filters-by-default-in-kconfig.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html