diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/i386/Kconfig | 13 | ||||
-rw-r--r-- | src/console/Kconfig | 7 |
2 files changed, 1 insertions, 19 deletions
diff --git a/src/arch/i386/Kconfig b/src/arch/i386/Kconfig index 64c96d7a64..860de86895 100644 --- a/src/arch/i386/Kconfig +++ b/src/arch/i386/Kconfig @@ -27,19 +27,6 @@ config ROMBASE 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 diff --git a/src/console/Kconfig b/src/console/Kconfig index 2bdffc1aff..ee6d547415 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -13,14 +13,9 @@ config TTYS0_BASE 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. |