Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / scripts / ver_linux
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.
6 #
7 echo 'If some fields are empty or look unusual you may have an old version.'
8 echo 'Compare to the current minimal requirements in Documentation/Changes.'
9 echo ' '
10
11 uname -a
12 echo ' '
13
14 gcc -dumpversion 2>&1| awk \
15 'NR==1{print "Gnu C                 ", $1}'
16
17 make --version 2>&1 | awk -F, '{print $1}' | awk \
18       '/GNU Make/{print "Gnu make              ",$NF}'
19
20 echo "binutils               $(ld -v | egrep -o '[0-9]+\.[0-9\.]+')"
21
22 echo -n "util-linux             "
23 fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$//
24
25 echo -n "mount                  "
26 mount --version | awk '{print $NF}' | sed -e s/^mount-// -e s/\)$//
27
28 depmod -V  2>&1 | awk 'NR==1 {print "module-init-tools     ",$NF}'
29
30 tune2fs 2>&1 | grep "^tune2fs" | sed 's/,//' |  awk \
31 'NR==1 {print "e2fsprogs             ", $2}'
32
33 fsck.jfs -V 2>&1 | grep version | sed 's/,//' |  awk \
34 'NR==1 {print "jfsutils              ", $3}'
35
36 reiserfsck -V 2>&1 | grep ^reiserfsck | awk \
37 'NR==1{print "reiserfsprogs         ", $2}'
38
39 fsck.reiser4 -V 2>&1 | grep ^fsck.reiser4 | awk \
40 'NR==1{print "reiser4progs          ", $2}'
41
42 xfs_db -V 2>&1 | grep version | awk \
43 'NR==1{print "xfsprogs              ", $3}'
44
45 pccardctl -V 2>&1| grep pcmciautils | awk '{print "pcmciautils           ", $2}'
46
47 cardmgr -V 2>&1| grep version | awk \
48 'NR==1{print "pcmcia-cs             ", $3}'
49
50 quota -V 2>&1 | grep version | awk \
51 'NR==1{print "quota-tools           ", $NF}'
52
53 pppd --version 2>&1| grep version | awk \
54 'NR==1{print "PPP                   ", $3}'
55
56 isdnctrl 2>&1 | grep version | awk \
57 'NR==1{print "isdn4k-utils          ", $NF}'
58
59 showmount --version 2>&1 | grep nfs-utils | awk \
60 'NR==1{print "nfs-utils             ", $NF}'
61
62 echo -n "Linux C Library        "
63 sed -n -e '/^.*\/libc-\([^/]*\)\.so$/{s//\1/;p;q}' < /proc/self/maps
64
65 ldd -v > /dev/null 2>&1 && ldd -v || ldd --version |head -n 1 | awk \
66 'NR==1{print "Dynamic linker (ldd)  ", $NF}'
67
68 ls -l /usr/lib/libg++.so /usr/lib/libstdc++.so  2>/dev/null | awk -F. \
69        '{print "Linux C++ Library      " $4"."$5"."$6}'
70
71 ps --version 2>&1 | grep version | awk \
72 'NR==1{print "Procps                ", $NF}'
73
74 ifconfig --version 2>&1 | grep tools | awk \
75 'NR==1{print "Net-tools             ", $NF}'
76
77 # Kbd needs 'loadkeys -h',
78 loadkeys -h 2>&1 | awk \
79 '(NR==1 && ($3 !~ /option/)) {print "Kbd                   ", $3}'
80
81 # while console-tools needs 'loadkeys -V'.
82 loadkeys -V 2>&1 | awk \
83 '(NR==1 && ($2 ~ /console-tools/)) {print "Console-tools         ", $3}'
84
85 oprofiled --version 2>&1 | awk \
86 '(NR==1 && ($2 == "oprofile")) {print "oprofile              ", $3}'
87
88 expr --v 2>&1 | awk 'NR==1{print "Sh-utils              ", $NF}'
89
90 udevinfo -V 2>&1 | grep version | awk '{print "udev                  ", $3}'
91
92 iwconfig --version 2>&1 | awk \
93 '(NR==1 && ($3 == "version")) {print "wireless-tools        ",$4}'
94
95 if [ -e /proc/modules ]; then
96     X=`cat /proc/modules | sed -e "s/ .*$//"`
97     echo "Modules Loaded         "$X
98 fi