diff options
author | phk <phk@FreeBSD.org> | 1995-11-06 16:51:45 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-11-06 16:51:45 +0000 |
commit | e6244c4ac2852d23cac766a6d4571ab75f412f07 (patch) | |
tree | c4dafa82732c6597d1d36b24e29d5dcf4cef3400 /tools | |
parent | a87b12906d55be9c005b8941bb7567635b38d54e (diff) | |
download | FreeBSD-src-e6244c4ac2852d23cac766a6d4571ab75f412f07.zip FreeBSD-src-e6244c4ac2852d23cac766a6d4571ab75f412f07.tar.gz |
Fix two nits.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/kernxref/kernxref.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tools/kernxref/kernxref.sh b/tools/tools/kernxref/kernxref.sh index 33d6cf8..60d0ab7 100644 --- a/tools/tools/kernxref/kernxref.sh +++ b/tools/tools/kernxref/kernxref.sh @@ -7,13 +7,13 @@ # this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp # ---------------------------------------------------------------------------- # -# $Id$ +# $Id: kernxref.sh,v 1.1 1995/10/15 11:33:42 phk Exp $ # # This shellscript will make a cross reference of the symbols of the LINT -# kernell. +# kernel. cd /sys/compile/LINT -nm -gon *.o /sys/libkern/obj/*.o /lkm/* | tr : ' ' | awk ' +nm -gon *.o /sys/libkern/obj/*.o /lkm/*.o | tr : ' ' | awk ' NF > 1 { if (length($2) == 8) { $2 = $3 |