Author: myles Date: 2009-09-25 19:24:08 +0200 (Fri, 25 Sep 2009) New Revision: 4672
Modified: trunk/coreboot-v2/src/console/Kconfig trunk/coreboot-v2/src/console/Makefile.inc Log: Rename CONFIG_SERIAL_CONSOLE to match newconfig.
Signed-off-by: Myles Watson mylesgw@gmail.com Acked-by: Ronald G. Minnich rminnich@gmail.com
Modified: trunk/coreboot-v2/src/console/Kconfig =================================================================== --- trunk/coreboot-v2/src/console/Kconfig 2009-09-24 16:56:08 UTC (rev 4671) +++ trunk/coreboot-v2/src/console/Kconfig 2009-09-25 17:24:08 UTC (rev 4672) @@ -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 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"
Modified: trunk/coreboot-v2/src/console/Makefile.inc =================================================================== --- trunk/coreboot-v2/src/console/Makefile.inc 2009-09-24 16:56:08 UTC (rev 4671) +++ trunk/coreboot-v2/src/console/Makefile.inc 2009-09-25 17:24:08 UTC (rev 4672) @@ -6,7 +6,7 @@ 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