~ [ 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 ] ~

Diff markup

Differences between /scripts/ver_linux (Version linux-6.11.5) and /scripts/ver_linux (Version unix-v6-master)


  1 #!/usr/bin/awk -f                                 
  2 # SPDX-License-Identifier: GPL-2.0                
  3 # Before running this script please ensure tha    
  4 # typical as you use for compilation/installat    
  5 # /bin /sbin /usr/bin /usr/sbin /usr/local/bin    
  6 # differ on your system.                          
  7                                                   
  8 BEGIN {                                           
  9         usage = "If some fields are empty or l    
 10         usage = usage "Compare to the current     
 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 -du    
 21         printversion("GNU Make", version("make    
 22         printversion("Binutils", version("ld -    
 23         printversion("Util-linux", version("mo    
 24         printversion("Mount", version("mount -    
 25         printversion("Module-init-tools", vers    
 26         printversion("E2fsprogs", version("tun    
 27         printversion("Jfsutils", version("fsck    
 28         printversion("Reiserfsprogs", version(    
 29         printversion("Reiser4fsprogs", version    
 30         printversion("Xfsprogs", version("xfs_    
 31         printversion("Pcmciautils", version("p    
 32         printversion("Pcmcia-cs", version("car    
 33         printversion("Quota-tools", version("q    
 34         printversion("PPP", version("pppd --ve    
 35         printversion("Isdn4k-utils", version("    
 36         printversion("Nfs-utils", version("sho    
 37         printversion("Bison", version("bison -    
 38         printversion("Flex", version("flex --v    
 39                                                   
 40         while ("ldconfig -p 2>/dev/null" | get    
 41                 if ($NF ~ libc || $NF ~ libcpp    
 42                         if (!seen[ver = versio    
 43                                 printversion("    
 44                                                   
 45         printversion("Dynamic linker (ldd)", v    
 46         printversion("Procps", version("ps --v    
 47         printversion("Net-tools", version("ifc    
 48         printversion("Kbd", version("loadkeys     
 49         printversion("Console-tools", version(    
 50         printversion("Sh-utils", version("expr    
 51         printversion("Udev", version("udevadm     
 52         printversion("Wireless-tools", version    
 53                                                   
 54         while ("sort /proc/modules" | getline     
 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, RSTAR    
 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