Saul Wold | 8af11c1 | 2017-03-28 15:06:08 -0700 | [diff] [blame] | 1 | #!/usr/bin/awk -f |
Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 2 | # SPDX-License-Identifier: GPL-2.0 |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 3 | # Before running this script please ensure that your PATH is |
| 4 | # typical as you use for compilation/installation. I use |
| 5 | # /bin /sbin /usr/bin /usr/sbin /usr/local/bin, but it may |
| 6 | # differ on your system. |
| 7 | |
| 8 | BEGIN { |
| 9 | usage = "If some fields are empty or look unusual you may have an old version.\n" |
| 10 | usage = usage "Compare to the current minimal requirements in Documentation/Changes.\n" |
| 11 | print usage |
| 12 | |
| 13 | system("uname -a") |
| 14 | printf("\n") |
| 15 | |
Alexander Kapshuk | 2ca46ed | 2019-01-05 19:09:23 +0200 | [diff] [blame] | 16 | vernum = "[0-9]+([.]?[0-9]+)+" |
| 17 | |
Alexander Kapshuk | 4169bc4 | 2018-05-12 12:02:30 +0300 | [diff] [blame] | 18 | printversion("GNU C", version("gcc -dumpversion")) |
| 19 | printversion("GNU Make", version("make --version")) |
| 20 | printversion("Binutils", version("ld -v")) |
| 21 | printversion("Util-linux", version("mount --version")) |
| 22 | printversion("Mount", version("mount --version")) |
| 23 | printversion("Module-init-tools", version("depmod -V")) |
| 24 | printversion("E2fsprogs", version("tune2fs")) |
| 25 | printversion("Jfsutils", version("fsck.jfs -V")) |
| 26 | printversion("Reiserfsprogs", version("reiserfsck -V")) |
| 27 | printversion("Reiser4fsprogs", version("fsck.reiser4 -V")) |
| 28 | printversion("Xfsprogs", version("xfs_db -V")) |
| 29 | printversion("Pcmciautils", version("pccardctl -V")) |
| 30 | printversion("Pcmcia-cs", version("cardmgr -V")) |
| 31 | printversion("Quota-tools", version("quota -V")) |
| 32 | printversion("PPP", version("pppd --version")) |
| 33 | printversion("Isdn4k-utils", version("isdnctrl")) |
| 34 | printversion("Nfs-utils", version("showmount --version")) |
Bhaskar Chowdhury | faade96 | 2019-11-06 09:06:10 +0530 | [diff] [blame^] | 35 | printversion("Bison", version("bison --version")) |
| 36 | printversion("Flex", version("flex --version")) |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 37 | |
Alexander Kapshuk | 1c9a4be5 | 2018-05-12 12:02:31 +0300 | [diff] [blame] | 38 | while (getline <"/proc/self/maps" > 0) { |
Alexander Kapshuk | 34fe3cf | 2018-05-31 22:22:46 +0300 | [diff] [blame] | 39 | if (/libc.*\.so$/) { |
| 40 | n = split($0, procmaps, "/") |
Alexander Kapshuk | 2ca46ed | 2019-01-05 19:09:23 +0200 | [diff] [blame] | 41 | if (match(procmaps[n], vernum)) { |
Alexander Kapshuk | 34fe3cf | 2018-05-31 22:22:46 +0300 | [diff] [blame] | 42 | ver = substr(procmaps[n], RSTART, RLENGTH) |
| 43 | printversion("Linux C Library", ver) |
| 44 | break |
| 45 | } |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 46 | } |
| 47 | } |
| 48 | |
Alexander Kapshuk | 4169bc4 | 2018-05-12 12:02:30 +0300 | [diff] [blame] | 49 | printversion("Dynamic linker (ldd)", version("ldd --version")) |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 50 | |
| 51 | while ("ldconfig -p 2>/dev/null" | getline > 0) { |
| 52 | if (/(libg|stdc)[+]+\.so/) { |
| 53 | libcpp = $NF |
| 54 | break |
| 55 | } |
| 56 | } |
Alexander Kapshuk | 1c9a4be5 | 2018-05-12 12:02:31 +0300 | [diff] [blame] | 57 | printversion("Linux C++ Library", version("readlink " libcpp)) |
Alexander Kapshuk | 4169bc4 | 2018-05-12 12:02:30 +0300 | [diff] [blame] | 58 | printversion("Procps", version("ps --version")) |
| 59 | printversion("Net-tools", version("ifconfig --version")) |
| 60 | printversion("Kbd", version("loadkeys -V")) |
| 61 | printversion("Console-tools", version("loadkeys -V")) |
| 62 | printversion("Oprofile", version("oprofiled --version")) |
| 63 | printversion("Sh-utils", version("expr --v")) |
| 64 | printversion("Udev", version("udevadm --version")) |
| 65 | printversion("Wireless-tools", version("iwconfig --version")) |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 66 | |
Alexander Kapshuk | 1c9a4be5 | 2018-05-12 12:02:31 +0300 | [diff] [blame] | 67 | while ("sort /proc/modules" | getline > 0) { |
| 68 | mods = mods sep $1 |
| 69 | sep = " " |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 70 | } |
Alexander Kapshuk | 1c9a4be5 | 2018-05-12 12:02:31 +0300 | [diff] [blame] | 71 | printversion("Modules Loaded", mods) |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | function version(cmd, ver) { |
Alexander Kapshuk | 4169bc4 | 2018-05-12 12:02:30 +0300 | [diff] [blame] | 75 | cmd = cmd " 2>&1" |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 76 | while (cmd | getline > 0) { |
Alexander Kapshuk | 2ca46ed | 2019-01-05 19:09:23 +0200 | [diff] [blame] | 77 | if (match($0, vernum)) { |
Alexander Kapshuk | 2d187d5 | 2016-08-22 21:19:17 +0300 | [diff] [blame] | 78 | ver = substr($0, RSTART, RLENGTH) |
| 79 | break |
| 80 | } |
| 81 | } |
| 82 | close(cmd) |
| 83 | return ver |
| 84 | } |
| 85 | |
| 86 | function printversion(name, value, ofmt) { |
| 87 | if (value != "") { |
| 88 | ofmt = "%-20s\t%s\n" |
| 89 | printf(ofmt, name, value) |
| 90 | } |
| 91 | } |