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