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>
Reviewed-on: http://review.coreboot.org/1974
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: David Hendricks <dhendrix@chromium.org>
Tested-by: build bot (Jenkins)
This commit is contained in:
Stefan Reinauer 2012-12-06 14:25:27 -08:00 committed by Ronald G. Minnich
parent fecd26f208
commit c2d5a1651e
1 changed files with 2 additions and 1 deletions

View File

@ -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.