2009-06-24 06:13:38 +00:00
|
|
|
/*
|
|
|
|
* Common module linker script, always used when linking a module.
|
|
|
|
* Archs are free to supply their own linker scripts. ld will
|
|
|
|
* combine them automatically.
|
|
|
|
*/
|
2022-10-27 15:59:06 +00:00
|
|
|
#ifdef CONFIG_UNWIND_TABLES
|
|
|
|
#define DISCARD_EH_FRAME
|
|
|
|
#else
|
|
|
|
#define DISCARD_EH_FRAME *(.eh_frame)
|
|
|
|
#endif
|
|
|
|
|
2009-06-24 06:13:38 +00:00
|
|
|
SECTIONS {
|
2017-03-01 18:04:44 +00:00
|
|
|
/DISCARD/ : {
|
|
|
|
*(.discard)
|
|
|
|
*(.discard.*)
|
|
|
|
}
|
2011-04-14 12:59:39 +00:00
|
|
|
|
2015-02-06 04:39:57 +00:00
|
|
|
__ksymtab 0 : { *(SORT(___ksymtab+*)) }
|
|
|
|
__ksymtab_gpl 0 : { *(SORT(___ksymtab_gpl+*)) }
|
|
|
|
__kcrctab 0 : { *(SORT(___kcrctab+*)) }
|
|
|
|
__kcrctab_gpl 0 : { *(SORT(___kcrctab_gpl+*)) }
|
2015-02-13 22:40:10 +00:00
|
|
|
|
2021-07-06 13:02:52 +00:00
|
|
|
.ctors 0 : ALIGN(8) { *(SORT(.ctors.*)) *(.ctors) }
|
2017-03-08 01:31:08 +00:00
|
|
|
.init_array 0 : ALIGN(8) { *(SORT(.init_array.*)) *(.init_array) }
|
2017-03-01 22:04:53 +00:00
|
|
|
|
2022-07-08 09:44:54 +00:00
|
|
|
.altinstructions 0 : ALIGN(8) { KEEP(*(.altinstructions)) }
|
|
|
|
__bug_table 0 : ALIGN(8) { KEEP(*(__bug_table)) }
|
2017-03-01 22:04:53 +00:00
|
|
|
__jump_table 0 : ALIGN(8) { KEEP(*(__jump_table)) }
|
2020-12-11 18:46:22 +00:00
|
|
|
|
|
|
|
__patchable_function_entries : { *(__patchable_function_entries) }
|
|
|
|
|
2022-09-08 21:54:47 +00:00
|
|
|
#ifdef CONFIG_ARCH_USES_CFI_TRAPS
|
|
|
|
__kcfi_traps : { KEEP(*(.kcfi_traps)) }
|
|
|
|
#endif
|
|
|
|
|
2021-03-22 23:44:38 +00:00
|
|
|
#ifdef CONFIG_LTO_CLANG
|
2020-12-11 18:46:22 +00:00
|
|
|
/*
|
|
|
|
* With CONFIG_LTO_CLANG, LLD always enables -fdata-sections and
|
|
|
|
* -ffunction-sections, which increases the size of the final module.
|
|
|
|
* Merge the split sections in the final binary.
|
|
|
|
*/
|
|
|
|
.bss : {
|
|
|
|
*(.bss .bss.[0-9a-zA-Z_]*)
|
|
|
|
*(.bss..L*)
|
|
|
|
}
|
|
|
|
|
|
|
|
.data : {
|
|
|
|
*(.data .data.[0-9a-zA-Z_]*)
|
|
|
|
*(.data..L*)
|
|
|
|
}
|
|
|
|
|
|
|
|
.rodata : {
|
|
|
|
*(.rodata .rodata.[0-9a-zA-Z_]*)
|
|
|
|
*(.rodata..L*)
|
|
|
|
}
|
2021-03-22 23:44:38 +00:00
|
|
|
#endif
|
2009-06-24 06:13:38 +00:00
|
|
|
}
|
2020-09-08 04:27:08 +00:00
|
|
|
|
|
|
|
/* bring in arch-specific sections */
|
|
|
|
#include <asm/module.lds.h>
|