diff --git a/[refs] b/[refs] index 603859facf91..325c4892842b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e752dd6cc66a3e6a11396928998baf390cc00420 +refs/heads/master: 580b2e3c0183818adf6151e60270405b02ea8504 diff --git a/trunk/scripts/ver_linux b/trunk/scripts/ver_linux index a28c279c49dd..beb43ef7f761 100755 --- a/trunk/scripts/ver_linux +++ b/trunk/scripts/ver_linux @@ -25,9 +25,11 @@ ld -v | awk -F\) '{print $1}' | awk \ '/BFD/{print "binutils ",$NF} \ /^GNU/{print "binutils ",$4}' -fdformat --version | awk -F\- '{print "util-linux ", $NF}' +echo -n "util-linux " +fdformat --version | awk '{print $NF}' | sed -e s/^util-linux-// -e s/\)$// -mount --version | awk -F\- '{print "mount ", $NF}' +echo -n "mount " +mount --version | awk '{print $NF}' | sed -e s/^mount-// -e s/\)$// depmod -V 2>&1 | awk 'NR==1 {print "module-init-tools ",$NF}'