Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
ENTRY(_start) MEMORY { RAM : ORIGIN = 0x0000, LENGTH = 0x0FFF ROM : ORIGIN = 0x1000, LENGTH = 0x0FFF } SECTIONS { .data : { *(.data) } > RAM AT>ROM .text : { *(.text) } > ROM .bss : { *(.bss) } > RAM }