rename CONFIG_SERIAL_POST to CONFIG_CONSOLE_POST
authorStefan Reinauer <reinauer@google.com>
Fri, 28 Jan 2011 07:47:35 +0000 (07:47 +0000)
committerStefan Reinauer <stepan@openbios.org>
Fri, 28 Jan 2011 07:47:35 +0000 (07:47 +0000)
because that is what it does.

Signed-off-by: Stefan Reinauer <reinauer@google.com>
Acked-by: Patrick Georgi <patrick.georgi@secunet.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6311 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/console/Kconfig
src/console/post.c

index 296b66819266290007ead45fa7f978608f12ecd2..972276b675d1ad291a266b8fd53e8f03bddef709 100644 (file)
@@ -326,14 +326,14 @@ config NO_POST
        bool "Don't show any POST codes"
        default n
 
-config SERIAL_POST
-       bool "Show POST codes on the serial port console"
-       depends on CONSOLE_SERIAL8250 && !NO_POST
+config CONSOLE_POST
+       bool "Show POST codes on the debug console"
+       depends on !NO_POST
        default n
        help
          If enabled, coreboot will additionally print POST codes (which are
          usually displayed using a so-called "POST card" ISA/PCI/PCI-E
-         device) on the serial console.
+         device) on the debug console.
 
 endmenu
 
index 43d50492f31a4eb4c317d3562c129b71f151abfa..49f6311303a8170e976b1abd64ab8d3bd56d84d1 100644 (file)
@@ -27,7 +27,7 @@
 void post_code(uint8_t value)
 {
 #if !defined(CONFIG_NO_POST) || CONFIG_NO_POST==0
-#if CONFIG_SERIAL_POST==1
+#if CONFIG_CONSOLE_POST==1
        print_emerg("POST: 0x");
        print_emerg_hex8(value);
        print_emerg("\n");