From 2172f61ede0ff7764eae39d4b75085c2dee9b610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Mon, 19 Mar 2012 19:12:49 +0200 Subject: Makefile: rename linker intermediate variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renamed CONFIG_ROMBASE to ROMSTAGE_BASE and removed it from Kconfig. Removed no-op calculation in ldscript. Change-Id: I53d39b60f07db76c8537b3133e59360687b9d4a7 Signed-off-by: Kyösti Mälkki Reviewed-on: http://review.coreboot.org/802 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-by: Rudolf Marek --- src/arch/x86/init/bootblock.ld | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/arch/x86/init') diff --git a/src/arch/x86/init/bootblock.ld b/src/arch/x86/init/bootblock.ld index fd4d3db960..27d718fcbc 100644 --- a/src/arch/x86/init/bootblock.ld +++ b/src/arch/x86/init/bootblock.ld @@ -25,13 +25,8 @@ OUTPUT_ARCH(i386) TARGET(binary) SECTIONS { - . = CONFIG_ROMBASE; + . = ROMSTAGE_BASE; - /* cut _start into last 64k */ - _x = .; - . = (_x < CONFIG_ROMBASE) ? (CONFIG_ROMBASE) : _x; - - /* This section might be better named .setup */ .rom . : { _rom = .; *(.rom.text); -- cgit v1.2.3