aboutsummaryrefslogtreecommitdiff
path: root/src/arch/arm/romstage.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/arm/romstage.ld')
-rw-r--r--src/arch/arm/romstage.ld12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/arch/arm/romstage.ld b/src/arch/arm/romstage.ld
index 750525bade..04d8f4b339 100644
--- a/src/arch/arm/romstage.ld
+++ b/src/arch/arm/romstage.ld
@@ -38,19 +38,19 @@ SECTIONS
. = CONFIG_ROMSTAGE_BASE;
.romtext . : {
- _rom = .;
_start = .;
*(.text.stage_entry.arm);
*(.text.startup);
*(.text);
+ *(.text.*);
} : to_load
.romdata . : {
*(.rodata);
- *(.machine_param);
+ *(.rodata.*);
*(.data);
+ *(.data.*);
. = ALIGN(8);
- _erom = .;
}
/* bss does not contain data, it is just a space that should be zero
@@ -61,12 +61,12 @@ SECTIONS
. = ALIGN(8);
_bss = .;
*(.bss)
+ *(.bss.*)
*(.sbss)
- *(COMMON)
+ *(.sbss.*)
+ _ebss = .;
}
- _ebss = .;
-
_end = .;
/* Discard the sections we don't need/want */