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
This commit is contained in:
Felipe Balbi 2025-04-10 10:15:44 -07:00
parent c7ab6a6ef7
commit b4bbc00a00

View File

@ -1,34 +1,34 @@
MEMORY { MEMORY {
OTFAD : ORIGIN = 0x08000000, LENGTH = 256 OTFAD : ORIGIN = 0x08000000, LENGTH = 256
FCB : ORIGIN = 0x08000400, LENGTH = 512 FCB : ORIGIN = 0x08000400, LENGTH = 512
BIV : ORIGIN = 0x08000600, LENGTH = 4 BIV : ORIGIN = 0x08000600, LENGTH = 4
KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K KEYSTORE : ORIGIN = 0x08000800, LENGTH = 2K
FLASH : ORIGIN = 0x08001000, LENGTH = 1M FLASH : ORIGIN = 0x08001000, LENGTH = 1M
RAM : ORIGIN = 0x20080000, LENGTH = 1536K RAM : ORIGIN = 0x20080000, LENGTH = 1536K
} }
SECTIONS { SECTIONS {
.otfad : { .otfad : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.otfad)) KEEP(* (.otfad))
. = ALIGN(4); . = ALIGN(4);
} > OTFAD } > OTFAD
.fcb : { .fcb : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.fcb)) KEEP(* (.fcb))
. = ALIGN(4); . = ALIGN(4);
} > FCB } > FCB
.biv : { .biv : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.biv)) KEEP(* (.biv))
. = ALIGN(4); . = ALIGN(4);
} > BIV } > BIV
.keystore : { .keystore : {
. = ALIGN(4); . = ALIGN(4);
KEEP(* (.keystore)) KEEP(* (.keystore))
. = ALIGN(4); . = ALIGN(4);
} > KEYSTORE } > KEYSTORE
} }