1SECTIONS 2{ 3 . = 16K; 4 stext = .; 5 .text : { *(.init) *(.text) } 6 . = ALIGN(4K); 7 .data : { *(.data) *(.rodata*) } 8 . = ALIGN(16); 9 .bss : { *(.bss) } 10 edata = .; 11} 12ENTRY(start) 13