1 2SECTIONS 3{ 4 .text : { *(.init) *(.text) *(.text.*) } 5 . = ALIGN(64K); 6 etext = .; 7 .data : { 8 exception_stacks = .; 9 . += 64K; 10 exception_stacks_end = .; 11 *(.data) 12 } 13 . = ALIGN(16); 14 .rodata : { *(.rodata) } 15 . = ALIGN(16); 16 .bss : { *(.bss) } 17 . = ALIGN(64K); 18 edata = .; 19 . += 64K; 20 . = ALIGN(64K); 21 stacktop = .; 22} 23 24ENTRY(start) 25