patch-2.4.10 linux/scripts/ver_linux
Next file: linux/CREDITS
Previous file: linux/scripts/mkversion
Back to the patch index
Back to the overall index
- Lines: 20
- Date:
Sun Sep 2 07:27:18 2001
- Orig file:
v2.4.9/linux/scripts/ver_linux
- Orig date:
Thu Apr 12 12:16:36 2001
diff -u --recursive --new-file v2.4.9/linux/scripts/ver_linux linux/scripts/ver_linux
@@ -26,7 +26,7 @@
insmod -V 2>&1 | awk 'NR==1 {print "modutils ",$NF}'
-tune2fs 2>&1 | grep tune2fs | sed 's/,//' | awk \
+tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' | awk \
'NR==1 {print "e2fsprogs ", $2}'
reiserfsck 2>&1 | grep reiserfsprogs | awk \
@@ -66,5 +66,7 @@
expr --v 2>&1 | awk 'NR==1{print "Sh-utils ", $NF}'
-X=`cat /proc/modules | sed -e "s/ .*$//"`
-echo "Modules Loaded "$X
+if [ -e /proc/modules ]; then
+ X=`cat /proc/modules | sed -e "s/ .*$//"`
+ echo "Modules Loaded "$X
+fi
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)