Welcome to mirror list, hosted at ThFree Co, Russian Federation.

check-segrel.lds « scripts « ia64 « arch - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c385d246e45846e234037540375c38e17923e718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0 */
SECTIONS {
	. = SIZEOF_HEADERS;
	.rodata : { *(.rodata) } :ro
	.note : { *(.note*) }
	. = 0xa0000;
	.data : { *(.data) } :dat
	/DISCARD/ : { *(*) }
}
PHDRS {
  ro PT_LOAD FILEHDR PHDRS;
  dat PT_LOAD;
}