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 v6.3-rc4 13 lines 242 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2SECTIONS { 3 . = SIZEOF_HEADERS; 4 .rodata : { *(.rodata) } :ro 5 .note : { *(.note*) } 6 . = 0xa0000; 7 .data : { *(.data) } :dat 8 /DISCARD/ : { *(*) } 9} 10PHDRS { 11 ro PT_LOAD FILEHDR PHDRS; 12 dat PT_LOAD; 13}