aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/init/bootblock.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/init/bootblock.ld')
-rw-r--r--src/arch/x86/init/bootblock.ld7
1 files changed, 1 insertions, 6 deletions
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);