diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-01 09:07:19 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-08-01 09:07:19 +0000 |
| commit | e71fcaa59f5725849febf46dd2720eb4dc94d848 (patch) | |
| tree | 378afc9b485c330106b17119c814cc8ac90884ad | |
| parent | 6337f45887dbf28c232a4ef200f4caf92707c810 (diff) | |
| download | rockbox-e71fcaa59f5725849febf46dd2720eb4dc94d848.zip rockbox-e71fcaa59f5725849febf46dd2720eb4dc94d848.tar.gz rockbox-e71fcaa59f5725849febf46dd2720eb4dc94d848.tar.bz2 rockbox-e71fcaa59f5725849febf46dd2720eb4dc94d848.tar.xz | |
Moved the .bss section to after the .stack section
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1505 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/player.lds | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/firmware/player.lds b/firmware/player.lds index fa2576d..55e2688 100644 --- a/firmware/player.lds +++ b/firmware/player.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 = .; |