1OUTPUT_ARCH(powerpc:common) 2ENTRY(_zimage_start) 3SECTIONS 4{ 5 . = (4*1024*1024); 6 _start = .; 7 .text : 8 { 9 *(.text) 10 *(.fixup) 11 } 12 _etext = .; 13 . = ALIGN(4096); 14 .data : 15 { 16 *(.rodata*) 17 *(.data*) 18 *(.sdata*) 19 __got2_start = .; 20 *(.got2) 21 __got2_end = .; 22 } 23 24 . = ALIGN(4096); 25 _vmlinux_start = .; 26 .kernel:vmlinux.strip : { *(.kernel:vmlinux.strip) } 27 _vmlinux_end = .; 28 29 . = ALIGN(4096); 30 _initrd_start = .; 31 .kernel:initrd : { *(.kernel:initrd) } 32 _initrd_end = .; 33 34 . = ALIGN(4096); 35 _edata = .; 36 37 . = ALIGN(4096); 38 __bss_start = .; 39 .bss : 40 { 41 *(.sbss) 42 *(.bss) 43 } 44 . = ALIGN(4096); 45 _end = . ; 46} 47