aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2004-08-08 13:34:43 +0200
committerSam Ravnborg <sam@mars.ravnborg.org>2004-08-08 13:34:43 +0200
commita66dcfe10a7a3cc5541f1906b6c3d72ae7a941d1 (patch)
tree4bd52e47eb9a298825d30c6e0d0b3633cf0ebb7c /scripts
parent1d3fa84da087f3ca352a3f8a8c39b7c7ec14f68d (diff)
downloadhistory-a66dcfe10a7a3cc5541f1906b6c3d72ae7a941d1.tar.gz
kbuild/sparc: Use new generic mksysmap script to generate System.map
o Introduced usage of the mksysmap script. o Improved the non-verbose output to look like this: BTFIX arch/sparc/boot/btfix.S AS arch/sparc/boot/btfix.o LD arch/sparc/boot/image SYSMAP arch/sparc/boot/System.map o No longer generate System.map for each build o Use normal AS rule to compile btfix.S Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mksysmap2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mksysmap b/scripts/mksysmap
index 0915b9ecc2bbfe..bb0fbef3db2b12 100644
--- a/scripts/mksysmap
+++ b/scripts/mksysmap
@@ -18,7 +18,7 @@
# they are used by the sparc BTFIXUP logic - and is assumed to be undefined.
-if [ "`$NM -u $1 | grep -v ' ____'`" != "" ]; then
+if [ "`$NM -u $1 | grep -v ' ___'`" != "" ]; then
echo "$1: error: undefined symbol(s) found:"
$NM -u $1 | grep -v ' ___'
exit 1