From f86baf3e903ddd81369b9ef7605fb5463498cbff Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 15 Jan 2019 00:05:46 +0100 Subject: soc/samsung/exynos5420: Disable BOOTBLOCK_CONSOLE Add a new Kconfig NO_BOOTBLOCK_CONSOLE to disable the BOOTBLOCK_CONSOLE option completely. The commit message of fbb11cf (ARM: Separate the early console (romstage) from the bootblock console.) states that it doesn't work before romstage on Exynos 5420. Change-Id: I9b56a52f2555b5233300f27031a9ef50e7ab7cea Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/30926 Tested-by: build bot (Jenkins) Reviewed-by: Julius Werner --- src/console/Kconfig | 5 ++++- src/soc/samsung/exynos5420/Kconfig | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/console/Kconfig b/src/console/Kconfig index 82f7441f3a..61ba667d59 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -1,8 +1,11 @@ menu "Console" +config NO_BOOTBLOCK_CONSOLE + bool + config BOOTBLOCK_CONSOLE bool "Enable early (bootblock) console output." - depends on C_ENVIRONMENT_BOOTBLOCK + depends on C_ENVIRONMENT_BOOTBLOCK && !NO_BOOTBLOCK_CONSOLE default y help Use console during the bootblock if supported diff --git a/src/soc/samsung/exynos5420/Kconfig b/src/soc/samsung/exynos5420/Kconfig index 7fb2f8f07c..7b87650fa9 100644 --- a/src/soc/samsung/exynos5420/Kconfig +++ b/src/soc/samsung/exynos5420/Kconfig @@ -7,6 +7,7 @@ config CPU_SAMSUNG_EXYNOS5420 select GENERIC_UDELAY select HAVE_UART_SPECIAL select RELOCATABLE_MODULES + select NO_BOOTBLOCK_CONSOLE bool default n -- cgit v1.2.3