summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tcc780x/boot.lds
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tcc780x/boot.lds')
-rw-r--r--firmware/target/arm/tcc780x/boot.lds9
1 files changed, 4 insertions, 5 deletions
diff --git a/firmware/target/arm/tcc780x/boot.lds b/firmware/target/arm/tcc780x/boot.lds
index 82b4619819..e54e09f91e 100644
--- a/firmware/target/arm/tcc780x/boot.lds
+++ b/firmware/target/arm/tcc780x/boot.lds
@@ -27,16 +27,15 @@ SECTIONS
27{ 27{
28 .text : { 28 .text : {
29 *(.init.text) 29 *(.init.text)
30 *(.text)
31 *(.text*) 30 *(.text*)
32 *(.glue_7) 31 *(.glue_7)
33 *(.glue_7t) 32 *(.glue_7t)
34 } > DRAM 33 } > DRAM
35 34
36 .data : { 35 .data : {
37 *(.icode) 36 *(.icode*)
38 *(.irodata) 37 *(.irodata*)
39 *(.idata) 38 *(.idata*)
40 *(.data*) 39 *(.data*)
41 *(.rodata.*) 40 *(.rodata.*)
42 . = ALIGN(0x4); 41 . = ALIGN(0x4);
@@ -55,7 +54,7 @@ SECTIONS
55 .bss (NOLOAD) : { 54 .bss (NOLOAD) : {
56 _edata = .; 55 _edata = .;
57 *(.bss*); 56 *(.bss*);
58 *(.ibss); 57 *(.ibss*);
59 *(COMMON) 58 *(COMMON)
60 _end = .; 59 _end = .;
61 } > DRAM 60 } > DRAM