drop incorrectly used CONFIG_ROM_IMAGE_SIZE and unused CONFIG_ARCH

Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6496 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2011-04-14 20:21:49 +00:00
committed by Stefan Reinauer
parent 6108958764
commit 8902502c4a
8 changed files with 7 additions and 17 deletions

View File

@@ -8,20 +8,10 @@ config AP_IN_SIPI_WAIT
default n
depends on ARCH_X86
# This is the name of the respective architecture subdirectory in arch/.
config ARCH
string
default i386
depends on ARCH_X86
config ROMBASE
hex
default 0xffff0000
config ROM_IMAGE_SIZE
hex
default 0x10000
config RAMBASE
hex
default 0x100000

View File

@@ -1,5 +1,5 @@
SECTIONS {
. = (CONFIG_ROMBASE + CONFIG_ROM_IMAGE_SIZE - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start);
. = (0x100000000 - CONFIG_ID_SECTION_OFFSET) - (__id_end - __id_start);
.id (.): {
*(.id)
}