diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2017-11-16 06:46:22 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@armlinux.org.uk> | 2017-11-21 09:46:11 -0500 |
commit | 29337b60ab5d2a499847c26d45e3cb81f62c2f26 (patch) | |
tree | c0b003cbb33d7dcd23d2ae9707f3d9a691d18bbc | |
parent | 1ee5e87f86deca84fdcb7c71bb8368cacc4c24e3 (diff) |
ARM: make decompressor debug output user selectable
Make the decompressor debug output user selectable, otherwise merely
enabling DEBUG_LL causes the decompressor to become board specific,
thereby preventing a multi-platform kernel from booting. Enabling
DEBUG_LL doesn't cause the kernel itself to become platform specific
unless EARLY_PRINTK is enabled, or one of the debugging routines is
added in a path that results in it being called.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-rw-r--r-- | arch/arm/Kconfig.debug | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug index 6dcea8e8e941..fa021568d051 100644 --- a/arch/arm/Kconfig.debug +++ b/arch/arm/Kconfig.debug | |||
@@ -1757,9 +1757,9 @@ config DEBUG_UART_8250_FLOW_CONTROL | |||
1757 | default y if ARCH_EBSA110 || DEBUG_FOOTBRIDGE_COM1 || DEBUG_GEMINI || ARCH_RPC | 1757 | default y if ARCH_EBSA110 || DEBUG_FOOTBRIDGE_COM1 || DEBUG_GEMINI || ARCH_RPC |
1758 | 1758 | ||
1759 | config DEBUG_UNCOMPRESS | 1759 | config DEBUG_UNCOMPRESS |
1760 | bool | 1760 | bool "Enable decompressor debugging via DEBUG_LL output" |
1761 | depends on ARCH_MULTIPLATFORM || PLAT_SAMSUNG || ARM_SINGLE_ARMV7M | 1761 | depends on ARCH_MULTIPLATFORM || PLAT_SAMSUNG || ARM_SINGLE_ARMV7M |
1762 | default y if DEBUG_LL && !DEBUG_OMAP2PLUS_UART && \ | 1762 | depends on DEBUG_LL && !DEBUG_OMAP2PLUS_UART && \ |
1763 | (!DEBUG_TEGRA_UART || !ZBOOT_ROM) && \ | 1763 | (!DEBUG_TEGRA_UART || !ZBOOT_ROM) && \ |
1764 | !DEBUG_BRCMSTB_UART | 1764 | !DEBUG_BRCMSTB_UART |
1765 | help | 1765 | help |