diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-11-12 17:25:16 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-11-12 17:25:16 +0000 |
commit | bdf4157d818f67077863ea510b86b567f8afc41a (patch) | |
tree | b49b974ea0a124ccb27a6ade73d641424595ef26 /src/arch/i386/Kconfig | |
parent | 2e6727362410294ad39116a3d84d99746565ce05 (diff) | |
download | coreboot-bdf4157d818f67077863ea510b86b567f8afc41a.tar.xz |
Adapt ROM_IMAGE_SIZE, too. ROMBASE should probably be defined
by ROM_IMAGE_SIZE (so ROM_IMAGE_SIZE + ROMBASE - 4GB == 0),
but that's for another patch.
Should fix the issues created by the bootblock cleanup patch.
Build tested on kontron/986lcd-m, trivial change.
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4940 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/Kconfig')
-rw-r--r-- | src/arch/i386/Kconfig | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/arch/i386/Kconfig b/src/arch/i386/Kconfig index 9c3ed9f41d..c2f023f2b1 100644 --- a/src/arch/i386/Kconfig +++ b/src/arch/i386/Kconfig @@ -24,12 +24,7 @@ config ROMBASE config ROM_IMAGE_SIZE hex - default 0x400000 if COREBOOT_ROMSIZE_KB_4096 - default 0x200000 if COREBOOT_ROMSIZE_KB_2048 - default 0x100000 if COREBOOT_ROMSIZE_KB_1024 - default 0x80000 if COREBOOT_ROMSIZE_KB_512 - default 0x40000 if COREBOOT_ROMSIZE_KB_256 - default 0x20000 if COREBOOT_ROMSIZE_KB_128 + default 0x10000 config RAMBASE hex |