Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.16-rc4 46 lines 594 B view raw
1OUTPUT_ARCH(powerpc:common) 2ENTRY(_start) 3SECTIONS 4{ 5 . = (5*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 _vmlinux_start = .; 24 *(.kernel:vmlinux.strip) 25 _vmlinux_end = .; 26 27 _initrd_start = .; 28 *(.kernel:initrd) 29 _initrd_end = .; 30 } 31 32 . = ALIGN(4096); 33 _edata = .; 34 __bss_start = .; 35 .bss : 36 { 37 *(.sbss) 38 *(.bss) 39 } 40 _end = . ; 41 42 /DISCARD/ : 43 { 44 *(.comment) 45 } 46}