diff options
author | Harald Welte <laforge@gnumonks.org> | 2011-12-28 01:18:29 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2011-12-28 01:18:29 +0100 |
commit | 588169f12218ed26121fdebc6878a729d69438ba (patch) | |
tree | a73406528757d3242c3dbdeb3a5e70d588491d48 /boards | |
parent | a34cdbc1a9f87f9f3d87416c95aa92d8395a783f (diff) |
osmo-sdr/sam3u: add exidx sections to linker script
Diffstat (limited to 'boards')
-rw-r--r-- | boards/osmo-sdr/at91sam3u4/flash.lds | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/boards/osmo-sdr/at91sam3u4/flash.lds b/boards/osmo-sdr/at91sam3u4/flash.lds index 91b792f..14d18a9 100644 --- a/boards/osmo-sdr/at91sam3u4/flash.lds +++ b/boards/osmo-sdr/at91sam3u4/flash.lds @@ -59,10 +59,18 @@ SECTIONS *(.rodata*)
*(.glue_7)
*(.glue_7t)
- . = ALIGN(4);
- _efixed = .; /* End of text section */
+
} >flash0
+ .ARM.exidx : {
+ __exidx_start = .;
+ *(.ARM.exidx* .gnu.linkonce.armexidx.*)
+ __exidx_end = .;
+ } >flash0
+
+ . = ALIGN(4);
+ _efixed = .; /* End of text section */
+
.relocate : AT (_efixed)
{
. = ALIGN(4);
|