Patchwork Kconfig extra variables

login
register
about
Submitter Myles Watson
Date 2009-10-09 17:25:10
Message ID <2831fecf0910091025n3c670e43ke1d0094ec8623138@mail.gmail.com>
Download mbox | patch
Permalink /patch/378/
State Accepted
Headers show

Comments

Myles Watson - 2009-10-09 17:25:10
Remove a couple of unused variables.

Kbuildall-tested.

Signed-off-by: Myles Watson <mylesgw@gmail.com>

Thanks,
Myles
Patrick Georgi - 2009-10-09 17:36:46
Am Freitag, den 09.10.2009, 11:25 -0600 schrieb Myles Watson:
> Remove a couple of unused variables.
> 
> Kbuildall-tested.
> 
> Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
Myles Watson - 2009-10-09 17:41:32
On Fri, Oct 9, 2009 at 11:36 AM, Patrick Georgi <patrick@georgi-clan.de> wrote:
> Am Freitag, den 09.10.2009, 11:25 -0600 schrieb Myles Watson:
>> Remove a couple of unused variables.
>>
>> Kbuildall-tested.
>>
>> Signed-off-by: Myles Watson <mylesgw@gmail.com>
> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
Rev 4754.
Thanks,
Myles

Patch

Index: svn/src/arch/i386/Kconfig
===================================================================
--- svn.orig/src/arch/i386/Kconfig
+++ svn/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
Index: svn/src/console/Kconfig
===================================================================
--- svn.orig/src/console/Kconfig
+++ svn/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.