diff options
author | Martin Roth <martinroth@google.com> | 2015-12-06 18:00:20 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-12-08 17:13:18 +0100 |
commit | 9c073ed2fd65007bbaa0f8d6b2d18fc73d685f9b (patch) | |
tree | a4e845c0646b1a1040c1f322c1a5a9e01d4477fd /src | |
parent | 3fb73c267c1514dcf79d594559ffb9ecb92f2d5d (diff) |
console: Allow ARM64 platforms to select bootblock console
Change-Id: I09943aafe29f6e7a2a878e7b6141661982dfc645
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/12658
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/console/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index 3130ee9534..73c6b282a3 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -2,7 +2,7 @@ menu "Console" config BOOTBLOCK_CONSOLE bool "Enable early (bootblock) console output." - depends on ARCH_ARM || ARCH_RISCV || ARCH_MIPS + depends on ARCH_ARM || ARCH_ARM64 || ARCH_RISCV || ARCH_MIPS default n help Use console during the bootblock if supported |