summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/imx233')
-rw-r--r--firmware/target/arm/imx233/app.lds8
-rw-r--r--firmware/target/arm/imx233/boot.lds8
2 files changed, 8 insertions, 8 deletions
diff --git a/firmware/target/arm/imx233/app.lds b/firmware/target/arm/imx233/app.lds
index 0eeecc1ab8..1dc929c778 100644
--- a/firmware/target/arm/imx233/app.lds
+++ b/firmware/target/arm/imx233/app.lds
@@ -52,9 +52,9 @@ SECTIONS
52 _iramstart = .; // always 0 52 _iramstart = .; // always 0
53 *(.vectors) 53 *(.vectors)
54 KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it 54 KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it
55 *(.icode) 55 *(.icode*)
56 *(.irodata) 56 *(.irodata*)
57 *(.idata) 57 *(.idata*)
58 . = ALIGN(0x4); 58 . = ALIGN(0x4);
59 _iramend = .; 59 _iramend = .;
60 } > IRAM AT> DRAM 60 } > IRAM AT> DRAM
@@ -65,7 +65,7 @@ SECTIONS
65 { 65 {
66 _iedata = .; 66 _iedata = .;
67 *(.qharray) 67 *(.qharray)
68 *(.ibss) 68 *(.ibss*)
69 . = ALIGN(0x4); 69 . = ALIGN(0x4);
70 _iend = .; 70 _iend = .;
71 } > IRAM 71 } > IRAM
diff --git a/firmware/target/arm/imx233/boot.lds b/firmware/target/arm/imx233/boot.lds
index d909b9fbd1..ac1209a475 100644
--- a/firmware/target/arm/imx233/boot.lds
+++ b/firmware/target/arm/imx233/boot.lds
@@ -44,9 +44,9 @@ SECTIONS
44 _iramstart = .; // always 0 44 _iramstart = .; // always 0
45 *(.vectors) 45 *(.vectors)
46 KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it 46 KEEP(*(.vectors));// otherwise there are no references to it and the linker strip it
47 *(.icode) 47 *(.icode*)
48 *(.irodata) 48 *(.irodata*)
49 *(.idata) 49 *(.idata*)
50 . = ALIGN(0x4); 50 . = ALIGN(0x4);
51 _iramend = .; 51 _iramend = .;
52 } > IRAM AT> DRAM 52 } > IRAM AT> DRAM
@@ -62,7 +62,7 @@ SECTIONS
62 { 62 {
63 _iedata = .; 63 _iedata = .;
64 *(.qharray) 64 *(.qharray)
65 *(.ibss) 65 *(.ibss*)
66 . = ALIGN(0x4); 66 . = ALIGN(0x4);
67 _iend = .; 67 _iend = .;
68 } > IRAM 68 } > IRAM