From 25cc887c25767ec3695d9391592edf5aaa637a8c Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Wed, 16 May 2012 01:48:09 +0400 Subject: [PATCH] Test for nVidia kernel module fixed --- sbin/snail.configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sbin/snail.configure b/sbin/snail.configure index b7dcbb7..3ac2ef6 100755 --- a/sbin/snail.configure +++ b/sbin/snail.configure @@ -16,11 +16,11 @@ else fi echo "Test for nVidia driver" -snail.nv_pwr_on && snail.nv_pwr_off +modinfo nvidia &>/dev/null if [ 0 -eq $? ]; then - echo "nVidia driver is OK! ;-)" + echo "nVidia kernel module found! ;-)" else - echo "Test failed ;-(" + echo "nVidia kernel module not found ;-(" echo "Probably you need to install standart nVidia driver or make a bug report..." echo "Also You can run 'snail.configure' manually when the problem is resolved." exit -1