Rename CONFIG_SERIAL_CONSOLE to match newconfig.
authorMyles Watson <mylesgw@gmail.com>
Fri, 25 Sep 2009 17:24:08 +0000 (17:24 +0000)
committerMyles Watson <mylesgw@gmail.com>
Fri, 25 Sep 2009 17:24:08 +0000 (17:24 +0000)
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4672 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/console/Kconfig
src/console/Makefile.inc

index ed3a07feeb26806e60c39d556c60134274be6f42..fb72cdbeb9c6d480bac42ef39b08dc674c4414c5 100644 (file)
@@ -1,6 +1,7 @@
 menu "Console options"
 
-config SERIAL_CONSOLE
+config CONSOLE_SERIAL8250
+       #TODO Rename to SERIAL_CONSOLE once Kconfig transition is complete.
        bool "See output on the serial port console"
        default y
 
@@ -10,13 +11,13 @@ config SERIAL_POST
 
 config TTYS0_BASE
        hex "I/O base for the serial port"
-       depends on SERIAL_CONSOLE
+       depends on CONSOLE_SERIAL8250
        default 0x3f8
 
 config SERIAL_SET_SPEED
        bool "Override the serial console BAUD rate"
        default y
-       depends on SERIAL_CONSOLE
+       depends on CONSOLE_SERIAL8250
 
 config TTYS0_BAUD
        int "Serial console BAUD rate"
index 233f44508a9e88995a1178156a3196ce6af2829d..4545ce5a3737ea972b2f0e8f1e1fb312ec1b72d2 100644 (file)
@@ -6,7 +6,7 @@ obj-y += vsprintf.o
 initobj-y += vtxprintf.o
 initobj-y += vsprintf.o
 
-driver-$(CONFIG_SERIAL_CONSOLE) += uart8250_console.o
+driver-$(CONFIG_CONSOLE_SERIAL8250) += uart8250_console.o
 driver-$(CONFIG_USBDEBUG_DIRECT) += usbdebug_direct_console.o
 driver-$(CONFIG_CONSOLE_VGA) += vga_console.o
 driver-$(CONFIG_CONSOLE_BTEXT) += btext_console.o