aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYoshinori Sato <ysato@users.sourceforge.jp>2015-03-09 15:30:48 +0900
committerYoshinori Sato <ysato@users.sourceforge.jp>2015-06-23 13:35:47 +0900
commit00902e984732e93f0aa7caec26dbebfcfbb9a829 (patch)
tree965bca7aed880edec2fb2bd342a0fe61993b580f
parentMAINTAINERS: Add H8/300 entry (diff)
downloadlinux-dev-00902e984732e93f0aa7caec26dbebfcfbb9a829.tar.xz
linux-dev-00902e984732e93f0aa7caec26dbebfcfbb9a829.zip
mksysmap: Add h8300 local symbol pattern
h8300's nm output have a lot of local symbols. ex) 00000000 N .Lframe0 00000013 N .LLST1 00000026 N .LLST2 00000039 N .LLST3 0000004c N .LLST4 Added new pattern " .L" to filter rule. Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Diffstat (limited to '')
-rwxr-xr-xscripts/mksysmap2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mksysmap b/scripts/mksysmap
index 7ada35a0f478..a35acc0d0b82 100755
--- a/scripts/mksysmap
+++ b/scripts/mksysmap
@@ -41,4 +41,4 @@
# so we just ignore them to let readprofile continue to work.
# (At least sparc64 has __crc_ in the middle).
-$NM -n $1 | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)' > $2
+$NM -n $1 | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)\|\( .L\)' > $2