~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/scripts/ver_linux

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #!/usr/bin/awk -f
  2 # SPDX-License-Identifier: GPL-2.0
  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 
 16         vernum = "[0-9]+([.]?[0-9]+)+"
 17         libc = "libc[.]so[.][0-9]+$"
 18         libcpp = "(libg|stdc)[+]+[.]so([.][0-9]+)+$"
 19 
 20         printversion("GNU C", version("gcc -dumpversion"))
 21         printversion("GNU Make", version("make --version"))
 22         printversion("Binutils", version("ld -v"))
 23         printversion("Util-linux", version("mount --version"))
 24         printversion("Mount", version("mount --version"))
 25         printversion("Module-init-tools", version("depmod -V"))
 26         printversion("E2fsprogs", version("tune2fs"))
 27         printversion("Jfsutils", version("fsck.jfs -V"))
 28         printversion("Reiserfsprogs", version("reiserfsck -V"))
 29         printversion("Reiser4fsprogs", version("fsck.reiser4 -V"))
 30         printversion("Xfsprogs", version("xfs_db -V"))
 31         printversion("Pcmciautils", version("pccardctl -V"))
 32         printversion("Pcmcia-cs", version("cardmgr -V"))
 33         printversion("Quota-tools", version("quota -V"))
 34         printversion("PPP", version("pppd --version"))
 35         printversion("Isdn4k-utils", version("isdnctrl"))
 36         printversion("Nfs-utils", version("showmount --version"))
 37         printversion("Bison", version("bison --version"))
 38         printversion("Flex", version("flex --version"))
 39 
 40         while ("ldconfig -p 2>/dev/null" | getline > 0)
 41                 if ($NF ~ libc || $NF ~ libcpp)
 42                         if (!seen[ver = version("readlink " $NF)]++)
 43                                 printversion("Linux C" ($NF ~ libcpp? "++" : "") " Library", ver)
 44 
 45         printversion("Dynamic linker (ldd)", version("ldd --version"))
 46         printversion("Procps", version("ps --version"))
 47         printversion("Net-tools", version("ifconfig --version"))
 48         printversion("Kbd", version("loadkeys -V"))
 49         printversion("Console-tools", version("loadkeys -V"))
 50         printversion("Sh-utils", version("expr --v"))
 51         printversion("Udev", version("udevadm --version"))
 52         printversion("Wireless-tools", version("iwconfig --version"))
 53 
 54         while ("sort /proc/modules" | getline > 0) {
 55                 mods = mods sep $1
 56                 sep = " "
 57         }
 58         printversion("Modules Loaded", mods)
 59 }
 60 
 61 function version(cmd,    ver) {
 62         cmd = cmd " 2>&1"
 63         while (cmd | getline > 0) {
 64                 if (match($0, vernum)) {
 65                         ver = substr($0, RSTART, RLENGTH)
 66                         break
 67                 }
 68         }
 69         close(cmd)
 70         return ver
 71 }
 72 
 73 function printversion(name, value,  ofmt) {
 74         if (value != "") {
 75                 ofmt = "%-20s\t%s\n"
 76                 printf(ofmt, name, value)
 77         }
 78 }

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php