summaryrefslogtreecommitdiff
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
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
-rw-r--r--firmware/target/arm/as3525/app.lds9
-rw-r--r--firmware/target/arm/as3525/boot.lds2
-rw-r--r--firmware/target/arm/s5l8700/app.lds9
-rw-r--r--firmware/target/arm/s5l8700/boot.lds8
-rw-r--r--firmware/target/arm/s5l8702/app.lds9
-rw-r--r--firmware/target/arm/s5l8702/boot.lds8
6 files changed, 21 insertions, 24 deletions
diff --git a/firmware/target/arm/as3525/app.lds b/firmware/target/arm/as3525/app.lds
index b24a2cf00b..c2fce0dcec 100644
--- a/firmware/target/arm/as3525/app.lds
+++ b/firmware/target/arm/as3525/app.lds
@@ -57,7 +57,6 @@ SECTIONS
57 { 57 {
58 _loadaddress = .; 58 _loadaddress = .;
59 _textstart = .; 59 _textstart = .;
60 *(.text)
61 *(.text*) 60 *(.text*)
62 *(.glue_7) 61 *(.glue_7)
63 *(.glue_7t) 62 *(.glue_7t)
@@ -84,9 +83,9 @@ SECTIONS
84 .iram : 83 .iram :
85 { 84 {
86 _iramstart = .; 85 _iramstart = .;
87 *(.icode) 86 *(.icode*)
88 *(.irodata) 87 *(.irodata*)
89 *(.idata) 88 *(.idata*)
90 . = ALIGN(0x4); 89 . = ALIGN(0x4);
91 _iramend = .; 90 _iramend = .;
92 } > IRAM AT> DRAM 91 } > IRAM AT> DRAM
@@ -97,7 +96,7 @@ SECTIONS
97 { 96 {
98 _iedata = .; 97 _iedata = .;
99 *(.qharray) 98 *(.qharray)
100 *(.ibss) 99 *(.ibss*)
101 . = ALIGN(0x4); 100 . = ALIGN(0x4);
102 _iend = .; 101 _iend = .;
103 } > IRAM 102 } > IRAM
diff --git a/firmware/target/arm/as3525/boot.lds b/firmware/target/arm/as3525/boot.lds
index 2274eea13a..9861ef2125 100644
--- a/firmware/target/arm/as3525/boot.lds
+++ b/firmware/target/arm/as3525/boot.lds
@@ -23,7 +23,7 @@ SECTIONS
23 *(.glue_7) 23 *(.glue_7)
24 *(.glue_7t) 24 *(.glue_7t)
25 *(.text*) 25 *(.text*)
26 *(.icode) 26 *(.icode*)
27 } > IRAM 27 } > IRAM
28 28
29 .data : { 29 .data : {
diff --git a/firmware/target/arm/s5l8700/app.lds b/firmware/target/arm/s5l8700/app.lds
index aa37addbf6..01b57c3bbd 100644
--- a/firmware/target/arm/s5l8700/app.lds
+++ b/firmware/target/arm/s5l8700/app.lds
@@ -51,7 +51,6 @@ SECTIONS
51 _loadaddress = .; 51 _loadaddress = .;
52 _textstart = .; 52 _textstart = .;
53 *(.init.text) 53 *(.init.text)
54 *(.text)
55 *(.text*) 54 *(.text*)
56 *(.glue_7) 55 *(.glue_7)
57 *(.glue_7t) 56 *(.glue_7t)
@@ -78,9 +77,9 @@ SECTIONS
78 .iram : 77 .iram :
79 { 78 {
80 _iramstart = .; 79 _iramstart = .;
81 *(.icode) 80 *(.icode*)
82 *(.irodata) 81 *(.irodata*)
83 *(.idata) 82 *(.idata*)
84 . = ALIGN(0x4); 83 . = ALIGN(0x4);
85 _iramend = .; 84 _iramend = .;
86 } > IRAM AT> DRAM 85 } > IRAM AT> DRAM
@@ -90,7 +89,7 @@ SECTIONS
90 { 89 {
91 _iedata = .; 90 _iedata = .;
92 *(.qharray) 91 *(.qharray)
93 *(.ibss) 92 *(.ibss*)
94 . = ALIGN(0x4); 93 . = ALIGN(0x4);
95 _iend = .; 94 _iend = .;
96 } > IRAM 95 } > IRAM
diff --git a/firmware/target/arm/s5l8700/boot.lds b/firmware/target/arm/s5l8700/boot.lds
index ccedda579d..4d3c80f1b9 100644
--- a/firmware/target/arm/s5l8700/boot.lds
+++ b/firmware/target/arm/s5l8700/boot.lds
@@ -75,9 +75,9 @@ SECTIONS
75 75
76 .data : { 76 .data : {
77 _datastart = . ; 77 _datastart = . ;
78 *(.irodata) 78 *(.irodata*)
79 *(.icode) 79 *(.icode*)
80 *(.idata) 80 *(.idata*)
81 *(.data*) 81 *(.data*)
82 *(.ncdata*); 82 *(.ncdata*);
83 . = ALIGN(0x4); 83 . = ALIGN(0x4);
@@ -106,7 +106,7 @@ SECTIONS
106 .bss (NOLOAD) : { 106 .bss (NOLOAD) : {
107 _edata = .; 107 _edata = .;
108 *(.bss*); 108 *(.bss*);
109 *(.ibss); 109 *(.ibss*);
110 *(.ncbss*); 110 *(.ncbss*);
111 *(COMMON); 111 *(COMMON);
112 . = ALIGN(0x4); 112 . = ALIGN(0x4);
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);