diff options
-rw-r--r-- | src/console/Kconfig | 5 | ||||
-rw-r--r-- | src/soc/samsung/exynos5420/Kconfig | 1 |
2 files changed, 5 insertions, 1 deletions
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 |