diff options
author | Wang Yao <wangyao@lemote.com> | 2024-04-17 07:35:30 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-05-14 07:03:26 +0200 |
commit | 8fe51b45c5645c259f759479c374648e9dfeaa03 (patch) | |
tree | 0b87722c7153bdef01354202cb3c5ae8f2c6c271 /scripts/module.lds.S | |
parent | kconfig: use menu_list_for_each_sym() in sym_check_choice_deps() (diff) | |
download | linux-8fe51b45c5645c259f759479c374648e9dfeaa03.tar.xz linux-8fe51b45c5645c259f759479c374648e9dfeaa03.zip |
modules: Drop the .export_symbol section from the final modules
Commit ddb5cdbafaaa ("kbuild: generate KSYMTAB entries by modpost")
forget drop the .export_symbol section from the final modules.
Fixes: ddb5cdbafaaa ("kbuild: generate KSYMTAB entries by modpost")
Signed-off-by: Wang Yao <wangyao@lemote.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/module.lds.S')
-rw-r--r-- | scripts/module.lds.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/module.lds.S b/scripts/module.lds.S index bf5bcf2836d8..89ff01a22634 100644 --- a/scripts/module.lds.S +++ b/scripts/module.lds.S @@ -13,6 +13,7 @@ SECTIONS { /DISCARD/ : { *(.discard) *(.discard.*) + *(.export_symbol) } __ksymtab 0 : { *(SORT(___ksymtab+*)) } |