Alexandru Gagniuc (mr.nuke.me@gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12871
-gerrit
commit 58f6218aa14582322d87e243c311036c906cb614 Author: Alexandru Gagniuc mr.nuke.me@gmail.com Date: Fri Oct 2 18:01:18 2015 -0700
console: Allow selecting C environment bootblock console on x86
There's no reason to not have console in the bootblock, if the bootblock is running a C environment.
Change-Id: Ia3e41796d9aea197cee0a073acce63761823c3aa Signed-off-by: Alexandru Gagniuc alexandrux.gagniuc@intel.com --- src/console/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/console/Kconfig b/src/console/Kconfig index 73c6b28..57b828a 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_ARM64 || ARCH_RISCV || ARCH_MIPS + depends on ARCH_ARM || ARCH_ARM64 || ARCH_RISCV || ARCH_MIPS || C_ENVIRONMENT_BOOTBLOCK default n help Use console during the bootblock if supported