]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - arch/ia64/scripts/check-segrel.lds
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-kernels.git] / arch / ia64 / scripts / check-segrel.lds
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2SECTIONS {
3 . = SIZEOF_HEADERS;
4 .rodata : { *(.rodata) } :ro
d650c37b 5 .note : { *(.note*) }
1da177e4
LT
6 . = 0xa0000;
7 .data : { *(.data) } :dat
8 /DISCARD/ : { *(*) }
9}
10PHDRS {
11 ro PT_LOAD FILEHDR PHDRS;
12 dat PT_LOAD;
13}