Author: gotar
Date: Mon Nov 16 15:03:50 2009
New Revision: 10969

Modified:
   rc-scripts/trunk/sysconfig/network-scripts/functions.network
Log:
- check rfkill before iwconfig (more common and doesn't require binary)
- note /sys/class/net/${1}/operstate file on some systems


Modified: rc-scripts/trunk/sysconfig/network-scripts/functions.network
==============================================================================
--- rc-scripts/trunk/sysconfig/network-scripts/functions.network        
(original)
+++ rc-scripts/trunk/sysconfig/network-scripts/functions.network        Mon Nov 
16 15:03:50 2009
@@ -577,15 +577,15 @@
 check_iwconfig ()
 {
        local output
-       [ -x /sbin/iwconfig ] || return 2
-       output=$(LC_ALL=C iwconfig "$1" 2>&1)
-       # "radio off" is ipwxxx only "feature" (and there is no "radio on")
-       echo "$output" | grep -q "radio off" && return 0
        # rfkill state (are there devices with multiple rfkill buttons?)
        output=$(cat /sys/class/net/${1}/device/rfkill*/state 2> /dev/null)
        # 1 is rfkill not active
        [ "$output" = "1" ] && return 1
        [ "$output" = "0" -o "$output" = "2" ] && return 0
+       [ -x /sbin/iwconfig ] || return 2
+       output=$(LC_ALL=C iwconfig "$1" 2>&1)
+       # "radio off" is ipwxxx only "feature" (and there is no "radio on")
+       echo "$output" | grep -q "radio off" && return 0
        # XXX: need more generic checks for wifi
        return 2
 }
_______________________________________________
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to