2005-04-17 06:20:36 +08:00
|
|
|
#!/bin/sh -x
|
|
|
|
# Based on the vmlinux file create the System.map file
|
|
|
|
# System.map is used by module-init tools and some debugging
|
2006-01-10 07:10:13 +08:00
|
|
|
# tools to retrieve the actual addresses of symbols in the kernel.
|
2005-04-17 06:20:36 +08:00
|
|
|
#
|
|
|
|
# Usage
|
2023-03-08 19:52:39 +08:00
|
|
|
# mksysmap vmlinux System.map [exclude]
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
|
|
|
#####
|
|
|
|
# Generate System.map (actual filename passed as second argument)
|
2023-03-08 19:52:37 +08:00
|
|
|
# The following refers to the symbol type as per nm(1).
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
# readprofile starts reading symbols when _stext is found, and
|
|
|
|
# continue until it finds a symbol which is not either of 'T', 't',
|
2022-09-26 17:02:25 +08:00
|
|
|
# 'W' or 'w'.
|
|
|
|
#
|
2023-03-08 19:52:38 +08:00
|
|
|
|
|
|
|
${NM} -n ${1} | sed >${2} -e "
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Ignored symbol types
|
2022-09-26 17:02:27 +08:00
|
|
|
#
|
2023-03-08 19:52:38 +08:00
|
|
|
|
|
|
|
# a: local absolute symbols
|
|
|
|
# N: debugging symbols
|
|
|
|
# U: undefined global symbols
|
|
|
|
# w: local weak symbols
|
|
|
|
/ [aNUw] /d
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Ignored prefixes
|
|
|
|
# (do not forget a space before each pattern)
|
|
|
|
|
|
|
|
# local symbols for ARM, MIPS, etc.
|
2023-06-07 01:35:53 +08:00
|
|
|
/ \\$/d
|
2023-03-08 19:52:38 +08:00
|
|
|
|
|
|
|
# local labels, .LBB, .Ltmpxxx, .L__unnamed_xx, .LASANPC, etc.
|
|
|
|
/ \.L/d
|
|
|
|
|
2023-03-08 19:52:40 +08:00
|
|
|
# arm64 EFI stub namespace
|
|
|
|
/ __efistub_/d
|
|
|
|
|
2023-06-07 02:19:36 +08:00
|
|
|
# arm64 local symbols in PIE namespace
|
|
|
|
/ __pi_\\$/d
|
|
|
|
/ __pi_\.L/d
|
|
|
|
|
2023-03-08 19:52:40 +08:00
|
|
|
# arm64 local symbols in non-VHE KVM namespace
|
2023-06-07 01:35:53 +08:00
|
|
|
/ __kvm_nvhe_\\$/d
|
2023-03-08 19:52:40 +08:00
|
|
|
/ __kvm_nvhe_\.L/d
|
|
|
|
|
|
|
|
# arm64 lld
|
|
|
|
/ __AArch64ADRPThunk_/d
|
|
|
|
|
|
|
|
# arm lld
|
|
|
|
/ __ARMV5PILongThunk_/d
|
|
|
|
/ __ARMV7PILongThunk_/d
|
|
|
|
/ __ThumbV7PILongThunk_/d
|
|
|
|
|
|
|
|
# mips lld
|
|
|
|
/ __LA25Thunk_/d
|
|
|
|
/ __microLA25Thunk_/d
|
|
|
|
|
|
|
|
# CFI type identifiers
|
|
|
|
/ __kcfi_typeid_/d
|
2023-06-26 20:29:46 +08:00
|
|
|
/ __kvm_nvhe___kcfi_typeid_/d
|
|
|
|
/ __pi___kcfi_typeid_/d
|
2023-03-08 19:52:40 +08:00
|
|
|
|
2023-03-08 19:52:38 +08:00
|
|
|
# CRC from modversions
|
|
|
|
/ __crc_/d
|
|
|
|
|
|
|
|
# EXPORT_SYMBOL (symbol name)
|
|
|
|
/ __kstrtab_/d
|
|
|
|
|
|
|
|
# EXPORT_SYMBOL (namespace)
|
|
|
|
/ __kstrtabns_/d
|
|
|
|
|
2023-03-08 19:52:40 +08:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Ignored suffixes
|
|
|
|
# (do not forget '$' after each pattern)
|
|
|
|
|
|
|
|
# arm
|
|
|
|
/_from_arm$/d
|
|
|
|
/_from_thumb$/d
|
|
|
|
/_veneer$/d
|
|
|
|
|
2023-03-08 19:52:38 +08:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Ignored symbols (exact match)
|
|
|
|
# (do not forget a space before and '$' after each pattern)
|
|
|
|
|
|
|
|
# for LoongArch?
|
|
|
|
/ L0$/d
|
2023-03-08 19:52:39 +08:00
|
|
|
|
2023-03-08 19:52:40 +08:00
|
|
|
# ppc
|
|
|
|
/ _SDA_BASE_$/d
|
|
|
|
/ _SDA2_BASE_$/d
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Ignored patterns
|
|
|
|
# (symbols that contain the pattern are ignored)
|
|
|
|
|
|
|
|
# ppc stub
|
|
|
|
/\.long_branch\./d
|
|
|
|
/\.plt_branch\./d
|
|
|
|
|
2023-03-08 19:52:39 +08:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# Ignored kallsyms symbols
|
|
|
|
#
|
|
|
|
# If the 3rd parameter exists, symbols from it will be omitted from the output.
|
|
|
|
# This makes kallsyms have the identical symbol lists in the step 1 and 2.
|
|
|
|
# Without this, the step2 would get new symbols generated by scripts/kallsyms.c
|
|
|
|
# when CONFIG_KALLSYMS_ALL is enabled. That might require one more pass.
|
|
|
|
$(if [ $# -ge 3 ]; then ${NM} ${3} | sed -n '/ U /!s:.* \([^ ]*\)$:/ \1$/d:p'; fi)
|
2023-03-08 19:52:38 +08:00
|
|
|
"
|