summaryrefslogtreecommitdiff
path: root/firmware/target/arm/s5l8700
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/s5l8700')
-rw-r--r--firmware/target/arm/s5l8700/app.lds9
-rw-r--r--firmware/target/arm/s5l8700/boot.lds8
2 files changed, 8 insertions, 9 deletions
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);