summaryrefslogtreecommitdiff
path: root/firmware/boot.lds
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-11-20 01:58:56 +0000
committerThom Johansen <thomj@rockbox.org>2005-11-20 01:58:56 +0000
commit118144fb0c7ead7f19ac7947de278de805d12cf1 (patch)
treeab5d02edae962e2a60453a43b6032fa78ce6a707 /firmware/boot.lds
parentb363b2f93407b9adb85976576aaeb59dcfc78af7 (diff)
downloadrockbox-118144fb0c7ead7f19ac7947de278de805d12cf1.tar.gz
rockbox-118144fb0c7ead7f19ac7947de278de805d12cf1.zip
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.lds4
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
82 82
83 . = (DRAMORIG+16*1024*1024); 83 . = (DRAMORIG+16*1024*1024);
84 .bss : { 84 .bss : {
85 _bssstart = .; 85 _edata = .;
86 *(.bss); 86 *(.bss);
87 *(.ibss); 87 *(.ibss);
88 _bssend = . ; 88 _end = .;
89 } 89 }
90} 90}
91#else 91#else