From c2d5a1651ef00542345adc4f91a096d8d04000a8 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Thu, 6 Dec 2012 14:25:27 -0800 Subject: 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 Reviewed-on: http://review.coreboot.org/1974 Reviewed-by: Ronald G. Minnich Reviewed-by: David Hendricks Tested-by: build bot (Jenkins) --- src/console/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') 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. -- cgit v1.2.3