diff options
author | Steven Cole <elenstev@mesatop.com> | 2005-04-18 21:57:33 -0700 |
---|---|---|
committer | Greg KH <greg@press.kroah.org> | 2005-04-18 21:57:33 -0700 |
commit | 1694145854a309bebd12a5cce63c9b398304e3bb (patch) | |
tree | 02dc62f231bc65bfa2bc665b34ccc45e48270397 /scripts/ver_linux | |
parent | 46ea0d6c26de431a39c744f7ad63b30bfc800c1e (diff) | |
download | linux-3.10-1694145854a309bebd12a5cce63c9b398304e3bb.tar.gz linux-3.10-1694145854a309bebd12a5cce63c9b398304e3bb.tar.bz2 linux-3.10-1694145854a309bebd12a5cce63c9b398304e3bb.zip |
[PATCH] 2.6.12-rc1-mm3 Fix ver_linux script for no udev utils.
Without the attached patch, the ver_linux script gives
the following if udev utils are not present.
./scripts/ver_linux: line 90: udevinfo: command not found
The patch causes ver_linux to be silent in the case of
no udevinfo command.
Signed-off-by: Steven Cole <elenstev@mesatop.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'scripts/ver_linux')
-rwxr-xr-x | scripts/ver_linux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ver_linux b/scripts/ver_linux index bb195a1c0f2..a28c279c49d 100755 --- a/scripts/ver_linux +++ b/scripts/ver_linux @@ -87,7 +87,7 @@ loadkeys -V 2>&1 | awk \ expr --v 2>&1 | awk 'NR==1{print "Sh-utils ", $NF}' -udevinfo -V | awk '{print "udev ", $3}' +udevinfo -V 2>&1 | grep version | awk '{print "udev ", $3}' if [ -e /proc/modules ]; then X=`cat /proc/modules | sed -e "s/ .*$//"` |