Author: myles Date: 2009-10-09 19:40:34 +0200 (Fri, 09 Oct 2009) New Revision: 4754
Modified: trunk/coreboot-v2/src/arch/i386/Kconfig trunk/coreboot-v2/src/console/Kconfig Log: Remove extra CONFIG variables.
Signed-off-by: Myles Watson mylesgw@gmail.com Acked-by: Patrick Georgi patrick.georgi@coresystems.de
Modified: trunk/coreboot-v2/src/arch/i386/Kconfig =================================================================== --- trunk/coreboot-v2/src/arch/i386/Kconfig 2009-10-09 17:39:35 UTC (rev 4753) +++ trunk/coreboot-v2/src/arch/i386/Kconfig 2009-10-09 17:40:34 UTC (rev 4754) @@ -27,19 +27,6 @@ default 0xfffc0000 if COREBOOT_ROMSIZE_KB_256 default 0xfffe0000 if COREBOOT_ROMSIZE_KB_128
-config PAYLOAD_SIZE - hex - default 0x0 - -config ROM_PAYLOAD_START - hex - default 0xffc00000 if COREBOOT_ROMSIZE_KB_4096 - default 0xffe00000 if COREBOOT_ROMSIZE_KB_2048 - default 0xfff00000 if COREBOOT_ROMSIZE_KB_1024 - default 0xfff80000 if COREBOOT_ROMSIZE_KB_512 - default 0xfffc0000 if COREBOOT_ROMSIZE_KB_256 - default 0xfffe0000 if COREBOOT_ROMSIZE_KB_128 - config ROM_IMAGE_SIZE hex default 0x400000 if COREBOOT_ROMSIZE_KB_4096
Modified: trunk/coreboot-v2/src/console/Kconfig =================================================================== --- trunk/coreboot-v2/src/console/Kconfig 2009-10-09 17:39:35 UTC (rev 4753) +++ trunk/coreboot-v2/src/console/Kconfig 2009-10-09 17:40:34 UTC (rev 4754) @@ -13,14 +13,9 @@ depends on CONSOLE_SERIAL8250 default 0x3f8
-config SERIAL_SET_SPEED - bool "Override the serial port BAUD rate" - default y - depends on CONSOLE_SERIAL8250 - config TTYS0_BAUD int "Serial port BAUD rate" - depends on SERIAL_SET_SPEED + depends on CONSOLE_SERIAL8250 default 115200
# TODO: Allow user-friendly selection of settings other than 8n1.