blob: 120225c541c54357f107865c291114863446cad4 [file] [log] [blame]
Quentin Perretcd195bc2020-02-28 17:20:14 +00001#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0-only
3
4# Create an autoksyms.h header file from the list of all module's needed symbols
5# as recorded on the second line of *.mod files and the user-provided symbol
6# whitelist.
7
8set -e
9
10output_file="$1"
11
12# Use "make V=1" to debug this script.
13case "$KBUILD_VERBOSE" in
14*1*)
15 set -x
16 ;;
17esac
18
Masahiro Yamadaa6aaeb82021-02-26 15:25:48 +090019needed_symbols=
20
21# Special case for modversions (see modpost.c)
Masahiro Yamada7d153692021-12-14 11:53:52 +090022if grep -q "^CONFIG_MODVERSIONS=y$" include/config/auto.conf; then
Masahiro Yamadaa6aaeb82021-02-26 15:25:48 +090023 needed_symbols="$needed_symbols module_layout"
24fi
25
Masahiro Yamada129ab0d2021-12-14 11:53:53 +090026ksym_wl=$(sed -n 's/^CONFIG_UNUSED_KSYMS_WHITELIST=\(.*\)$/\1/p' include/config/auto.conf)
Masahiro Yamada7d153692021-12-14 11:53:52 +090027if [ -n "$ksym_wl" ]; then
Quentin Perretcd195bc2020-02-28 17:20:14 +000028 [ "${ksym_wl}" != "${ksym_wl#/}" ] || ksym_wl="$abs_srctree/$ksym_wl"
29 if [ ! -f "$ksym_wl" ] || [ ! -r "$ksym_wl" ]; then
30 echo "ERROR: '$ksym_wl' whitelist file not found" >&2
31 exit 1
32 fi
33fi
34
35# Generate a new ksym list file with symbols needed by the current
36# set of modules.
37cat > "$output_file" << EOT
38/*
39 * Automatically generated file; DO NOT EDIT.
40 */
41
42EOT
43
Quentin Perret88694cf2020-02-28 17:20:15 +000044[ -f modules.order ] && modlist=modules.order || modlist=/dev/null
Masahiro Yamadaa6aaeb82021-02-26 15:25:48 +090045
46{
47 sed 's/ko$/mod/' $modlist | xargs -n1 sed -n -e '2p'
48 echo "$needed_symbols"
49 [ -n "$ksym_wl" ] && cat "$ksym_wl"
50} | sed -e 's/ /\n/g' | sed -n -e '/^$/!p' |
Masahiro Yamada29500f12021-02-11 15:14:16 +090051# Remove the dot prefix for ppc64; symbol names with a dot (.) hold entry
52# point addresses.
53sed -e 's/^\.//' |
Quentin Perretcd195bc2020-02-28 17:20:14 +000054sort -u |
55sed -e 's/\(.*\)/#define __KSYM_\1 1/' >> "$output_file"