Daniele Forsi (dforsi@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6416
-gerrit
commit 2c6cde5de5664cc6e27549dfa1dbcbfd6b8a4521 Author: Daniele Forsi dforsi@gmail.com Date: Wed Jul 30 12:23:35 2014 +0200
src/console/Kconfig: Fix choice for showing POST codes on console
Use CONSOLE_POST because the preprocessor conditional in post_code() in src/console/post.c depends on it, while POST_IO is used in another conditional for sending the codes to an I/O port.
Change-Id: Ia044cffb5f0aad0f8b2bb04faa12df11a705757a Signed-off-by: Daniele Forsi dforsi@gmail.com --- src/console/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/console/Kconfig b/src/console/Kconfig index 710cc6e..8a2da1c 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -296,7 +296,7 @@ config CMOS_POST_EXTRA This will enable extra logging of work that happens between post codes into CMOS for debug. This uses an additional 8 bytes of CMOS.
-config POST_IO +config CONSOLE_POST bool "Show POST codes on the debug console" depends on !NO_POST default n