1SECTIONS 2{ 3 . = 4M + SIZEOF_HEADERS; 4 stext = .; 5 .text : { *(.init) *(.text) *(.text.*) } 6 etext = .; 7 . = ALIGN(4K); 8 .data : { 9 *(.data) 10 exception_table_start = .; 11 *(.data.ex) 12 exception_table_end = .; 13 } 14 . = ALIGN(16); 15 .rodata : { *(.rodata) } 16 . = ALIGN(16); 17 .bss : { *(.bss) } 18 . = ALIGN(4K); 19 edata = .; 20} 21 22ENTRY(start) 23