summaryrefslogtreecommitdiff
path: root/arch/arm64/include/asm/module.lds.h
blob: 603f92a8a73ed9faf22cad0915b4b24c3fb9a04a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
SECTIONS {
	.plt 0 : { BYTE(0) }
	.init.plt 0 : { BYTE(0) }
	.text.ftrace_trampoline 0 : { BYTE(0) }
	.init.text.ftrace_trampoline 0 : { BYTE(0) }

#ifdef CONFIG_UNWIND_TABLES
	/*
	 * Currently, we only use unwind info at module load time, so we can
	 * put it into the .init allocation.
	 */
	.init.eh_frame 0 : { *(.eh_frame) }
#endif
}