diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-12-06 14:25:27 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2012-12-06 23:57:11 +0100 |
commit | c2d5a1651ef00542345adc4f91a096d8d04000a8 (patch) | |
tree | 7051794b49d8e2e3a5dc0a036ad6a03e3d4b9dc1 /src | |
parent | fecd26f208cfa4d90748d32dc35d34e5e9a8bda4 (diff) |
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)
Diffstat (limited to 'src')
-rw-r--r-- | src/console/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index 303a81d0be..f4e35286e8 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. |