aboutsummaryrefslogtreecommitdiff
path: root/examples/mimxrt6
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-04-10 10:15:44 -0700
committerFelipe Balbi <[email protected]>2025-04-10 10:15:44 -0700
commitb4bbc00a0060ae1edb6178d12c9d0b9cd5a7031a (patch)
tree364e9acfbf8adf2ac8f95bd67492bf4ac0f1097b /examples/mimxrt6
parentc7ab6a6ef79366bc83c43205b16c5b9064501586 (diff)
Convert tabs into spaces
Indent everything with spaces instead of TABS. Based on PR by James Munns on the original "out-of-tree" copy of embassy-imxrt: https://github.com/OpenDevicePartnership/embassy-imxrt/pull/387
Diffstat (limited to 'examples/mimxrt6')
-rw-r--r--examples/mimxrt6/memory.x52
1 files changed, 26 insertions, 26 deletions
diff --git a/examples/mimxrt6/memory.x b/examples/mimxrt6/memory.x
index 5ea82fd71..6c4410f57 100644
--- a/examples/mimxrt6/memory.x
+++ b/examples/mimxrt6/memory.x
@@ -1,34 +1,34 @@
1MEMORY { 1MEMORY {
2 OTFAD : ORIGIN = 0x08000000, LENGTH = 256 2 OTFAD : ORIGIN = 0x08000000, LENGTH = 256
3 FCB : ORIGIN = 0x08000400, LENGTH = 512 3 FCB : ORIGIN = 0x08000400, LENGTH = 512
4 BIV : ORIGIN = 0x08000600, LENGTH = 4 4 BIV : ORIGIN = 0x08000600, LENGTH = 4
5 KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K 5 KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K
6 FLASH : ORIGIN = 0x08001000, LENGTH = 1M 6 FLASH : ORIGIN = 0x08001000, LENGTH = 1M
7 RAM : ORIGIN = 0x20080000, LENGTH = 1536K 7 RAM : ORIGIN = 0x20080000, LENGTH = 1536K
8} 8}
9 9
10SECTIONS { 10SECTIONS {
11 .otfad : { 11 .otfad : {
12 . = ALIGN(4); 12 . = ALIGN(4);
13 KEEP(* (.otfad)) 13 KEEP(* (.otfad))
14 . = ALIGN(4); 14 . = ALIGN(4);
15 } > OTFAD 15 } > OTFAD
16 16
17 .fcb : { 17 .fcb : {
18 . = ALIGN(4); 18 . = ALIGN(4);
19 KEEP(* (.fcb)) 19 KEEP(* (.fcb))
20 . = ALIGN(4); 20 . = ALIGN(4);
21 } > FCB 21 } > FCB
22 22
23 .biv : { 23 .biv : {
24 . = ALIGN(4); 24 . = ALIGN(4);
25 KEEP(* (.biv)) 25 KEEP(* (.biv))
26 . = ALIGN(4); 26 . = ALIGN(4);
27 } > BIV 27 } > BIV
28 28
29 .keystore : { 29 .keystore : {
30 . = ALIGN(4); 30 . = ALIGN(4);
31 KEEP(* (.keystore)) 31 KEEP(* (.keystore))
32 . = ALIGN(4); 32 . = ALIGN(4);
33 } > KEYSTORE 33 } > KEYSTORE
34} 34}