ENTRY(_start) SECTIONS { . = 0x10000; __kstart = .; .text : { *(.text) } .data : { *(.data) } .bss : { *(.bss) *(COMMON) } __kend = .; }