aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/ver_linux
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ver_linux')
-rwxr-xr-xscripts/ver_linux7
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/ver_linux b/scripts/ver_linux
index 31c0e4d09ffc..1fea7494a1b1 100755
--- a/scripts/ver_linux
+++ b/scripts/ver_linux
@@ -25,7 +25,12 @@ awk '/GNU Make/{
25 substr($0,RSTART,RLENGTH)) 25 substr($0,RSTART,RLENGTH))
26}' 26}'
27 27
28echo "binutils $(ld -v | egrep -o '[0-9]+\.[0-9\.]+')" 28ld -v 2>&1 |
29awk '/[0-9]+([.]?[0-9]+)+/ && !/not found$/{
30 match($0, /[0-9]+([.]?[0-9]+)+/)
31 printf("Binutils\t\t%s\n",
32 substr($0,RSTART,RLENGTH))
33}'
29 34
30echo -n "util-linux " 35echo -n "util-linux "
31fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$// 36fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$//