summaryrefslogtreecommitdiff
path: root/firmware/decompressor/link.lds
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-11-30 00:05:40 +0000
committerJens Arnold <amiconn@rockbox.org>2005-11-30 00:05:40 +0000
commit4c385148ac4a2f4959ec39841c20eaeb42ace668 (patch)
tree09f7e37c89a0a187fc1573efbfa9f2bd8cd60ec2 /firmware/decompressor/link.lds
parent8b022749a7c29ce5f7254fc153ca78b087e53e04 (diff)
downloadrockbox-4c385148ac4a2f4959ec39841c20eaeb42ace668.tar.gz
rockbox-4c385148ac4a2f4959ec39841c20eaeb42ace668.zip
Self-extracting loader: Cleaner method for inclusion of the UCL-compressed image. The input image is now checked for correctness and converted to C source. The Makefile still needs fixing...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8109 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/decompressor/link.lds')
-rwxr-xr-xfirmware/decompressor/link.lds6
1 files changed, 1 insertions, 5 deletions
diff --git a/firmware/decompressor/link.lds b/firmware/decompressor/link.lds
index 9cb4be8830..d0e11c1094 100755
--- a/firmware/decompressor/link.lds
+++ b/firmware/decompressor/link.lds
@@ -40,15 +40,11 @@ SECTIONS
40 { 40 {
41 *(.data) 41 *(.data)
42 . = ALIGN(0x4); 42 . = ALIGN(0x4);
43 _imgstart = .;
44 *(.image)
45 . = ALIGN(0x4);
46 _imgend = .;
47 _iramcopy = .; 43 _iramcopy = .;
48 } > DRAM 44 } > DRAM
49 45
50 .iram IRAMORIG : AT ( _iramcopy ) 46 .iram IRAMORIG : AT ( _iramcopy )
51 { 47 {
52 _iramstart = .; 48 _iramstart = .;
53 *(.icode) 49 *(.icode)
54 *(.idata) 50 *(.idata)