1ENTRY(_start) 2 3SECTIONS 4{ 5 . = 0x100000; 6 /* 7 * NB: there's no need to use the AT keyword in order to set the LMA, by 8 * default the linker will use VMA = LMA unless specified otherwise. 9 */ 10 .text : { *(.text) *(.text.*) } 11 .rodata : { *(.rodata) *(.rodata.*) } 12 .data : { *(.data) *(.data.*) } 13 .bss : { *(.bss) *(.bss.*) } 14 _end = .; 15} 16