Merge with 2.5.75.
[linux-2.6/linux-mips.git] / scripts / ver_linux
blob26f3084e7db3d24f477d46e685ef64873b4ee778
1 #!/bin/sh
2 # Before running this script please ensure that your PATH is
3 # typical as you use for compilation/istallation. I use
4 # /bin /sbin /usr/bin /usr/sbin /usr/local/bin, but it may
5 # differ on your system.
7 PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/sbin:$PATH
8 echo 'If some fields are empty or look unusual you may have an old version.'
9 echo 'Compare to the current minimal requirements in Documentation/Changes.'
10 echo ' '
12 uname -a
13 echo ' '
15 gcc --version 2>&1| head -n 1 | grep -v gcc | awk \
16 'NR==1{print "Gnu C ", $1}'
18 gcc --version 2>&1| grep gcc | awk \
19 'NR==1{print "Gnu C ", $3}'
21 make --version 2>&1 | awk -F, '{print $1}' | awk \
22 '/GNU Make/{print "Gnu make ",$NF}'
24 ld -v 2>&1 | awk -F\) '{print $1}' | awk \
25 '/BFD/{print "binutils ",$NF}'
27 fdformat --version | awk -F\- '{print "util-linux ", $NF}'
29 mount --version | awk -F\- '{print "mount ", $NF}'
31 depmod -V 2>&1 | grep version | awk 'NR==1 {print "module-init-tools ",$NF}'
33 tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' | awk \
34 'NR==1 {print "e2fsprogs ", $2}'
36 fsck.jfs -V 2>&1 | grep version | sed 's/,//' | awk \
37 'NR==1 {print "jfsutils ", $3}'
39 reiserfsck -V 2>&1 | grep reiserfsprogs | awk \
40 'NR==1{print "reiserfsprogs ", $NF}'
42 xfs_db -V 2>&1 | grep version | awk \
43 'NR==1{print "xfsprogs ", $3}'
45 cardmgr -V 2>&1| grep version | awk \
46 'NR==1{print "pcmcia-cs ", $3}'
48 quota -V 2>&1 | grep version | awk \
49 'NR==1{print "quota-tools ", $NF}'
51 pppd --version 2>&1| grep version | awk \
52 'NR==1{print "PPP ", $3}'
54 isdnctrl 2>&1 | grep version | awk \
55 'NR==1{print "isdn4k-utils ", $NF}'
57 ls -l `ldd /bin/sh | awk '/libc/{print $3}'` | sed \
58 -e 's/\.so$//' | awk -F'[.-]' '{print "Linux C Library " \
59 $(NF-2)"."$(NF-1)"."$NF}'
61 ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -1 | awk \
62 'NR==1{print "Dynamic linker (ldd) ", $NF}'
64 ls -l /usr/lib/lib{g,stdc}++.so 2>/dev/null | awk -F. \
65 '{print "Linux C++ Library " $4"."$5"."$6}'
67 ps --version 2>&1 | awk 'NR==1{print "Procps ", $NF}'
69 ifconfig --version 2>&1 | grep tools | awk \
70 'NR==1{print "Net-tools ", $NF}'
72 # Kbd needs 'loadkeys -h',
73 loadkeys -h 2>&1 | awk \
74 '(NR==1 && ($3 !~ /option/)) {print "Kbd ", $3}'
76 # while console-tools needs 'loadkeys -V'.
77 loadkeys -V 2>&1 | awk \
78 '(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools ", $3}'
80 expr --v 2>&1 | awk 'NR==1{print "Sh-utils ", $NF}'
82 if [ -e /proc/modules ]; then
83 X=`cat /proc/modules | sed -e "s/ .*$//"`
84 echo "Modules Loaded "$X