summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/board/common
diff options
context:
space:
mode:
authorIngo Albrecht <prom@berlin.ccc.de>2010-03-07 19:02:07 +0100
committerHarald Welte <laforge@gnumonks.org>2010-04-08 10:35:24 +0200
commit3dbc02f2de6c9fcadfca469a57f878fc78a77c3d (patch)
treedcfb3e6b8a7a134a17884791259985968bbce44e /src/target/firmware/board/common
parentf4d755c1ff4d8f8c34738a0516f3822b1405823d (diff)
firmware: Fixed osmoload linker script so it works in some situations.
Diffstat (limited to 'src/target/firmware/board/common')
-rw-r--r--src/target/firmware/board/common/compal_osmoload.lds6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/firmware/board/common/compal_osmoload.lds b/src/target/firmware/board/common/compal_osmoload.lds
index f72176d9..7519d7d5 100644
--- a/src/target/firmware/board/common/compal_osmoload.lds
+++ b/src/target/firmware/board/common/compal_osmoload.lds
@@ -5,7 +5,7 @@ MEMORY
{
/* area that can be initialized by the loader (plus some reserved stuff) */
LRAM (rw) : ORIGIN = 0x00800000, LENGTH = 0x00010000
- /* data/bss for osmoload */
+ /* bss for osmoload */
DRAM (rw) : ORIGIN = 0x00810000, LENGTH = 0x00010000
/* remainder of internal ram, can be used for bss and the like */
IRAM (rw) : ORIGIN = 0x00820000, LENGTH = 0x00020000
@@ -44,12 +44,12 @@ SECTIONS
/* read-only data */
. = ALIGN(4);
.rodata : {
- *(.rodata)
+ *(.rodata*)
} > IRAM
/* initialized data */
. = ALIGN(4);
- .data : {
+ .data : {
*(.data)
} > IRAM