diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-19 11:32:21 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-19 11:32:21 -0700 |
commit | 1bf99477226963d84b182b3995e355d3091199be (patch) | |
tree | 843f3e9a211b70dc8d66f505f1f13f6013f3de32 /scripts/mksysmap | |
parent | 83e0c24a38aa91f7d932bbcab257093b82435074 (diff) | |
parent | 7d3cc8b6d899e53222c22a78d98bb53a695f7962 (diff) | |
download | op-kernel-dev-1bf99477226963d84b182b3995e355d3091199be.zip op-kernel-dev-1bf99477226963d84b182b3995e355d3091199be.tar.gz |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes:
Don't clean bounds.h and asm-offsets.h
kconfig: incorrect 'len' field initialisation ?
kernel-doc: allow unnamed bit-fields
kbuild: filter away debug symbols from kernel symbols
Remove *.rej pattern from .gitignore
MAINTAINERS: document names of new kbuild trees
kbuild: disable modpost warnings for linkonce sections
kbuild: escape meta characters in regular expression in make TAGS
Diffstat (limited to 'scripts/mksysmap')
-rw-r--r-- | scripts/mksysmap | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mksysmap b/scripts/mksysmap index 4390fab..6e133a0 100644 --- a/scripts/mksysmap +++ b/scripts/mksysmap @@ -32,6 +32,7 @@ # For System.map filter away: # a - local absolute symbols # U - undefined global symbols +# N - debugging symbols # w - local weak symbols # readprofile starts reading symbols when _stext is found, and @@ -40,5 +41,5 @@ # so we just ignore them to let readprofile continue to work. # (At least sparc64 has __crc_ in the middle). -$NM -n $1 | grep -v '\( [aUw] \)\|\(__crc_\)\|\( \$[adt]\)' > $2 +$NM -n $1 | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)' > $2 |