summaryrefslogtreecommitdiff
path: root/firmware/target/arm/s5l8702
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-12-17 02:00:59 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-12-17 02:00:59 +0000
commit43d7a75369286dc3b39b858df34f66b0b45de34e (patch)
treebd14bf4c6d991cba6d00bc622b1a41794bb36838 /firmware/target/arm/s5l8702
parent28dec004c0782e81661d9803ddf51a19b58dc469 (diff)
downloadrockbox-43d7a75369286dc3b39b858df34f66b0b45de34e.tar.gz
rockbox-43d7a75369286dc3b39b858df34f66b0b45de34e.zip
Get the linker files that slipped through in r31337.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31338 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/s5l8702')
-rw-r--r--firmware/target/arm/s5l8702/app.lds9
-rw-r--r--firmware/target/arm/s5l8702/boot.lds8
2 files changed, 8 insertions, 9 deletions
diff --git a/firmware/target/arm/s5l8702/app.lds b/firmware/target/arm/s5l8702/app.lds
index ec66e5d969..60ecdc6738 100644
--- a/firmware/target/arm/s5l8702/app.lds
+++ b/firmware/target/arm/s5l8702/app.lds
@@ -46,7 +46,6 @@ SECTIONS
46 _loadaddress = .; 46 _loadaddress = .;
47 _textstart = .; 47 _textstart = .;
48 *(.init.text) 48 *(.init.text)
49 *(.text)
50 *(.text*) 49 *(.text*)
51 *(.glue_7) 50 *(.glue_7)
52 *(.glue_7t) 51 *(.glue_7t)
@@ -73,9 +72,9 @@ SECTIONS
73 .iram : 72 .iram :
74 { 73 {
75 _iramstart = .; 74 _iramstart = .;
76 *(.icode) 75 *(.icode*)
77 *(.irodata) 76 *(.irodata*)
78 *(.idata) 77 *(.idata*)
79 . = ALIGN(0x4); 78 . = ALIGN(0x4);
80 _iramend = .; 79 _iramend = .;
81 } > IRAM AT> DRAM 80 } > IRAM AT> DRAM
@@ -85,7 +84,7 @@ SECTIONS
85 { 84 {
86 _iedata = .; 85 _iedata = .;
87 *(.qharray) 86 *(.qharray)
88 *(.ibss) 87 *(.ibss*)
89 . = ALIGN(0x4); 88 . = ALIGN(0x4);
90 _iend = .; 89 _iend = .;
91 } > IRAM 90 } > IRAM
diff --git a/firmware/target/arm/s5l8702/boot.lds b/firmware/target/arm/s5l8702/boot.lds
index 9741cee45e..2885f77eda 100644
--- a/firmware/target/arm/s5l8702/boot.lds
+++ b/firmware/target/arm/s5l8702/boot.lds
@@ -56,9 +56,9 @@ SECTIONS
56 56
57 .data : { 57 .data : {
58 _datastart = . ; 58 _datastart = . ;
59 *(.irodata) 59 *(.irodata*)
60 *(.icode) 60 *(.icode*)
61 *(.idata) 61 *(.idata*)
62 *(.data*) 62 *(.data*)
63 *(.ncdata*); 63 *(.ncdata*);
64 . = ALIGN(0x4); 64 . = ALIGN(0x4);
@@ -85,7 +85,7 @@ SECTIONS
85 .bss (NOLOAD) : { 85 .bss (NOLOAD) : {
86 _edata = .; 86 _edata = .;
87 *(.bss*); 87 *(.bss*);
88 *(.ibss); 88 *(.ibss*);
89 *(.ncbss*); 89 *(.ncbss*);
90 *(COMMON); 90 *(COMMON);
91 . = ALIGN(0x4); 91 . = ALIGN(0x4);