summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-08-01 08:58:17 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-08-01 08:58:17 +0000
commit6337f45887dbf28c232a4ef200f4caf92707c810 (patch)
tree33981981541137274efcb65bec0feb753dfa13f2
parentc3d52b41ea3f9d0b36239be8c38932eabbce5575 (diff)
downloadrockbox-6337f45887dbf28c232a4ef200f4caf92707c810.zip
rockbox-6337f45887dbf28c232a4ef200f4caf92707c810.tar.gz
rockbox-6337f45887dbf28c232a4ef200f4caf92707c810.tar.bz2
rockbox-6337f45887dbf28c232a4ef200f4caf92707c810.tar.xz
The internal RAM copy accidentally ended up in the wrong place
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1504 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/app.lds18
-rw-r--r--firmware/player.lds2
2 files changed, 10 insertions, 10 deletions
diff --git a/firmware/app.lds b/firmware/app.lds
index a514c46..810695a 100644
--- a/firmware/app.lds
+++ b/firmware/app.lds
@@ -33,14 +33,6 @@ SECTIONS
*(.rodata)
} > DRAM
- .bss :
- {
- _edata = .;
- *(.bss)
- *(COMMON)
- _end = .;
- } > DRAM
-
.stack :
{
*(.stack)
@@ -51,6 +43,14 @@ SECTIONS
_stackend = .;
} > DRAM
+ .bss :
+ {
+ _edata = .;
+ *(.bss)
+ *(COMMON)
+ _end = .;
+ } > DRAM
+
.heap :
{
_poolstart = .;
@@ -68,7 +68,7 @@ SECTIONS
_mp3end = .;
} > DRAM
- .iram 0xf000000 : AT ( _end )
+ .iram 0xf000000 : AT ( _iramcopy )
{
_iramstart = .;
*(.icode)
diff --git a/firmware/player.lds b/firmware/player.lds
index bb20c2b..fa2576d 100644
--- a/firmware/player.lds
+++ b/firmware/player.lds
@@ -73,7 +73,7 @@ SECTIONS
LONG(0);
} > DRAM
- .iram 0xf000000 : AT ( _end )
+ .iram 0xf000000 : AT ( _iramcopy )
{
_iramstart = .;
*(.icode)