diff options
author | Thom Johansen <thomj@rockbox.org> | 2005-11-20 01:58:56 +0000 |
---|---|---|
committer | Thom Johansen <thomj@rockbox.org> | 2005-11-20 01:58:56 +0000 |
commit | 118144fb0c7ead7f19ac7947de278de805d12cf1 (patch) | |
tree | ab5d02edae962e2a60453a43b6032fa78ce6a707 /firmware/boot.lds | |
parent | b363b2f93407b9adb85976576aaeb59dcfc78af7 (diff) |
Startup code for ordinary Rockbox.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8006 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/boot.lds')
-rw-r--r-- | firmware/boot.lds | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/boot.lds b/firmware/boot.lds index d785fdcc2e..eb6e355302 100644 --- a/firmware/boot.lds +++ b/firmware/boot.lds @@ -82,10 +82,10 @@ SECTIONS . = (DRAMORIG+16*1024*1024); .bss : { - _bssstart = .; + _edata = .; *(.bss); *(.ibss); - _bssend = . ; + _end = .; } } #else |