Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/63678 )
Change subject: console/Kconfig: Reverse NO_POST and depend on ARCH_X86 ......................................................................
console/Kconfig: Reverse NO_POST and depend on ARCH_X86
Post codes are only used on x86.
Change-Id: I184bd5574db9a8817dc235846cc6fddf519e7121 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M src/console/Kconfig 1 file changed, 8 insertions(+), 7 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/78/63678/1
diff --git a/src/console/Kconfig b/src/console/Kconfig index 6152592..19478f8 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -413,13 +413,14 @@ highlight lines based on their log level. Disable this if your terminal does not support ANSI escape sequences.
-config NO_POST - bool "Don't show any POST codes" - default n +config POST + bool "Show POST codes" + depends on ARCH_X86 + default y
config CMOS_POST bool "Store post codes in CMOS for debugging" - depends on !NO_POST && PC80_SYSTEM + depends on POST && PC80_SYSTEM default n help If enabled, coreboot will store post codes in CMOS and switch between @@ -437,7 +438,7 @@
config CONSOLE_POST bool "Show POST codes on the debug console" - depends on !NO_POST + depends on POST default n help If enabled, coreboot will additionally print POST codes (which are @@ -446,7 +447,7 @@
config POST_DEVICE bool "Send POST codes to an external device" - depends on !NO_POST + depends on POST default y
choice @@ -471,7 +472,7 @@
config POST_IO bool "Send POST codes to an IO port" - depends on PC80_SYSTEM && !NO_POST + depends on PC80_SYSTEM && POST default y help If enabled, POST codes will be written to an IO port.