aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/romstage.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/romstage.ld')
-rw-r--r--src/arch/x86/romstage.ld4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/arch/x86/romstage.ld b/src/arch/x86/romstage.ld
index 951ca656a3..cc0142eb80 100644
--- a/src/arch/x86/romstage.ld
+++ b/src/arch/x86/romstage.ld
@@ -26,17 +26,15 @@ SECTIONS
.rom . : {
_rom = .;
*(.rom.text);
- *(.rom.text.*);
+ *(.rom.data);
*(.text);
*(.text.*);
- *(.rom.data);
. = ALIGN(4);
_cbmem_init_hooks = .;
KEEP(*(.rodata.cbmem_init_hooks));
_ecbmem_init_hooks = .;
*(.rodata);
*(.rodata.*);
- *(.rom.data.*);
. = ALIGN(16);
_erom = .;
}