Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1974
-gerrit
commit 7e99ecea8c1836c42b1640b1c72c6b839e570172 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Thu Dec 6 14:25:27 2012 -0800
Disable CMOS_POST and IO_POST on non-PC80 systems
Because they use outb instructions, they are bound to fail on non-PC80 systems like ARM.
Change-Id: I679ac6c0964c06c369cc90556529bb6f629d56f9 Signed-off-by: Stefan Reinauer reinauer@google.com --- src/console/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/console/Kconfig b/src/console/Kconfig index 303a81d..f4e3528 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -372,7 +372,7 @@ config CONSOLE_POST
config CMOS_POST bool "Store post codes in CMOS for debugging" - depends on !NO_POST + depends on !NO_POST && PC80_SYSTEM default n help If enabled, coreboot will store post codes in CMOS and switch between @@ -390,6 +390,7 @@ config CMOS_POST_OFFSET
config IO_POST bool "Send POST codes to an IO port" + depends on PC80_SYSTEM default y help If enabled, POST codes will be written to an IO port.