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
		
			
				
	
	
		
			35 lines
		
	
	
		
			861 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			861 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
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
 | 
						|
}
 | 
						|
 | 
						|
SECTIONS {
 | 
						|
        .otfad : {
 | 
						|
                . = ALIGN(4);
 | 
						|
                KEEP(* (.otfad))
 | 
						|
                . = ALIGN(4);
 | 
						|
        } > OTFAD
 | 
						|
 | 
						|
        .fcb : {
 | 
						|
                . = ALIGN(4);
 | 
						|
                KEEP(* (.fcb))
 | 
						|
                . = ALIGN(4);
 | 
						|
        } > FCB
 | 
						|
 | 
						|
        .biv : {
 | 
						|
                . = ALIGN(4);
 | 
						|
                KEEP(* (.biv))
 | 
						|
                . = ALIGN(4);
 | 
						|
        } > BIV
 | 
						|
 | 
						|
        .keystore : {
 | 
						|
                . = ALIGN(4);
 | 
						|
                KEEP(* (.keystore))
 | 
						|
                . = ALIGN(4);
 | 
						|
        } > KEYSTORE
 | 
						|
}
 |