diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-26 15:10:37 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-26 15:10:37 -0800 |
commit | 2034563ca323ee45f37a32911550d21c1f1e9626 (patch) | |
tree | cb9cfd052df2caa736f95890580b9de39276b77f /scripts/mksysmap | |
parent | 924d26df6b774b85c8b4548189b20e34f904a149 (diff) | |
parent | df291fa993c506da89a89264ff8166bccd172a14 (diff) | |
download | blackbird-op-linux-2034563ca323ee45f37a32911550d21c1f1e9626.tar.gz blackbird-op-linux-2034563ca323ee45f37a32911550d21c1f1e9626.zip |
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:
kbuild: fix kbuild.txt typos
kbuild: print usage with no arguments in scripts/config
Revert "kbuild: strip generated symbols from *.ko"
Diffstat (limited to 'scripts/mksysmap')
-rw-r--r-- | scripts/mksysmap | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/mksysmap b/scripts/mksysmap index 1db316a3712b..6e133a0bae7a 100644 --- a/scripts/mksysmap +++ b/scripts/mksysmap @@ -37,6 +37,9 @@ # readprofile starts reading symbols when _stext is found, and # continue until it finds a symbol which is not either of 'T', 't', -# 'W' or 'w'. +# 'W' or 'w'. __crc_ are 'A' and placed in the middle +# 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] \)\|\( \$[adt]\)' > $2 |