diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2023-03-08 12:52:37 +0100 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2023-04-17 04:03:56 +0200 |
commit | e9f76363d0aa2d7c01288d9aad79b7e44855a435 (patch) | |
tree | 30d78a2fe26949eae92518f85d9e05182eff4efc /scripts | |
parent | scripts/kallsyms: remove redundant code for omitting U and N (diff) | |
download | linux-e9f76363d0aa2d7c01288d9aad79b7e44855a435.tar.xz linux-e9f76363d0aa2d7c01288d9aad79b7e44855a435.zip |
scripts/mksysmap: remove comments described in nm(1)
I do not think we need to repeat what is written in 'man nm'.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mksysmap | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/scripts/mksysmap b/scripts/mksysmap index 16a08b8ef2f8..fea65fc3b624 100755 --- a/scripts/mksysmap +++ b/scripts/mksysmap @@ -9,25 +9,7 @@ ##### # Generate System.map (actual filename passed as second argument) - -# $NM produces the following output: -# f0081e80 T alloc_vfsmnt - -# The second row specify the type of the symbol: -# A = Absolute -# B = Uninitialised data (.bss) -# C = Common symbol -# D = Initialised data -# G = Initialised data for small objects -# I = Indirect reference to another symbol -# N = Debugging symbol -# R = Read only -# S = Uninitialised data for small objects -# T = Text code symbol -# U = Undefined symbol -# V = Weak symbol -# W = Weak symbol -# Corresponding small letters are local symbols +# The following refers to the symbol type as per nm(1). # For System.map filter away: # a - local absolute symbols |