diff options
author | bde <bde@FreeBSD.org> | 1999-07-29 07:12:01 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-07-29 07:12:01 +0000 |
commit | 11b4b3493ee89d5929c58bec91fc7e99cdd39133 (patch) | |
tree | e5af4fa14c73f45645b66ddcbb1037d14697a9d2 /tools | |
parent | 9eb6a913ca4c455c8679bbbea8a0fd44b4af016b (diff) | |
download | FreeBSD-src-11b4b3493ee89d5929c58bec91fc7e99cdd39133.zip FreeBSD-src-11b4b3493ee89d5929c58bec91fc7e99cdd39133.tar.gz |
Look for symbols in /modules/*.ko, not in /lkm/*.o.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/kernxref/kernxref.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tools/kernxref/kernxref.sh b/tools/tools/kernxref/kernxref.sh index b29e8d6..60973b0 100644 --- a/tools/tools/kernxref/kernxref.sh +++ b/tools/tools/kernxref/kernxref.sh @@ -7,7 +7,7 @@ # this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp # ---------------------------------------------------------------------------- # -# $Id: kernxref.sh,v 1.10 1998/12/06 21:39:07 archie Exp $ +# $Id: kernxref.sh,v 1.11 1998/12/08 08:14:37 archie Exp $ # # This shellscript will make a cross reference of the symbols of the LINT # kernel. @@ -22,7 +22,7 @@ else OBJFORMAT=aout; fi -OBJFORMAT=${OBJFORMAT} nm -gon `echo *.o /lkm/*.o \ +OBJFORMAT=${OBJFORMAT} nm -gon `echo *.o /modules/*.ko \ | tr ' ' '\012' \ | egrep -v '(aicasm|genassym)'` \ | tr : ' ' | awk ' |