SECTIONS { . = 0x80200000; .text : { *(.text.entry) /* entry point */ *(.text*) /* all text sections */ } .rodata : { *(.rodata*) } .data : { *(.data*) } .bss : { *(.bss*) } }