2009-06-24 02:13:38 -04: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 11:59:06 -04:00
|
|
|
#ifdef CONFIG_UNWIND_TABLES
|
|
|
|
#define DISCARD_EH_FRAME
|
|
|
|
#else
|
|
|
|
#define DISCARD_EH_FRAME *(.eh_frame)
|
|
|
|
#endif
|
|
|
|
|
2009-06-24 02:13:38 -04:00
|
|
|
SECTIONS {
|
2017-03-01 13:04:44 -05:00
|
|
|
/DISCARD/ : {
|
|
|
|
*(.discard)
|
|
|
|
*(.discard.*)
|
|
|
|
}
|
2011-04-14 08:59:39 -04:00
|
|
|
|
2015-02-05 23:39:57 -05:00
|
|
|
__ksymtab 0 : { *(SORT(___ksymtab+*)) }
|
|
|
|
__ksymtab_gpl 0 : { *(SORT(___ksymtab_gpl+*)) }
|
|
|
|
__kcrctab 0 : { *(SORT(___kcrctab+*)) }
|
|
|
|
__kcrctab_gpl 0 : { *(SORT(___kcrctab_gpl+*)) }
|
2015-02-13 17:40:10 -05:00
|
|
|
|
2021-07-06 09:02:52 -04:00
|
|
|
.ctors 0 : ALIGN(8) { *(SORT(.ctors.*)) *(.ctors) }
|
2017-03-07 20:31:08 -05:00
|
|
|
.init_array 0 : ALIGN(8) { *(SORT(.init_array.*)) *(.init_array) }
|
2017-03-01 17:04:53 -05:00
|
|
|
|
2022-07-08 05:44:54 -04:00
|
|
|
.altinstructions 0 : ALIGN(8) { KEEP(*(.altinstructions)) }
|
|
|
|
__bug_table 0 : ALIGN(8) { KEEP(*(__bug_table)) }
|
2017-03-01 17:04:53 -05:00
|
|
|
__jump_table 0 : ALIGN(8) { KEEP(*(__jump_table)) }
|
2020-12-11 13:46:22 -05:00
|
|
|
|
|
|
|
__patchable_function_entries : { *(__patchable_function_entries) }
|
|
|
|
|
2022-09-08 17:54:47 -04:00
|
|
|
#ifdef CONFIG_ARCH_USES_CFI_TRAPS
|
|
|
|
__kcfi_traps : { KEEP(*(.kcfi_traps)) }
|
|
|
|
#endif
|
|
|
|
|
2021-03-22 19:44:38 -04:00
|
|
|
#ifdef CONFIG_LTO_CLANG
|
2020-12-11 13:46:22 -05: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 19:44:38 -04:00
|
|
|
#endif
|
2009-06-24 02:13:38 -04:00
|
|
|
}
|
2020-09-08 00:27:08 -04:00
|
|
|
|
|
|
|
/* bring in arch-specific sections */
|
|
|
|
#include <asm/module.lds.h>
|