remove LED api abuse from r13032 per request fom nbd, gpioctl is now built by defualt
[openwrt.git] / package / madwifi / files / lib / wifi / madwifi.sh
index 4bb5be5..6ee6435 100755 (executable)
@@ -177,12 +177,11 @@ enable_atheros() {
                config_get antrx "$device" rxantenna
                config_get anttx "$device" txantenna
                config_get_bool softled "$device" softled 1
-               config_get_bool gpioctl "$device" gpioctl
 
                devname="$(cat /proc/sys/dev/$device/dev_name)"
                antgpio=
                case "$devname" in
-                       NanoStation2) antgpio=wifi; [ -n "$gpioctl" ] && gpioctl=0;;
+                       NanoStation2) antgpio=7;;
                        NanoStation5) antgpio=1;;
                esac
                if [ -n "$antgpio" ]; then
@@ -198,20 +197,12 @@ enable_atheros() {
                        [ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
                        case "$antenna" in
                                horizontal|vertical|auto)
-                                       if [ "$gpioctl" = "0" ]; then
-                                               echo 0 >/sys/class/leds/$antgpio/brightness 2>&1
-                                       else
-                                               gpioctl "dirout" "$antgpio" >/dev/null 2>&1
-                                               gpioctl "set" "$antgpio" >/dev/null 2>&1
-                                       fi
+                                       gpioctl "dirout" "$antgpio" >/dev/null 2>&1
+                                       gpioctl "set" "$antgpio" >/dev/null 2>&1
                                ;;
                                external)
-                                       if [ "$gpioctl" = "0" ]; then
-                                               echo 0 >/sys/class/leds/$antgpio/brightness
-                                       else
-                                               gpioctl "dirout" "$antgpio" >/dev/null 2>&1
-                                               gpioctl "clear" "$antgpio" >/dev/null 2>&1
-                                       fi
+                                       gpioctl "dirout" "$antgpio" >/dev/null 2>&1
+                                       gpioctl "clear" "$antgpio" >/dev/null 2>&1
                                ;;
                        esac
                fi
@@ -341,8 +332,7 @@ detect_atheros() {
                        NanoStation*)
                                EXTRA_DEV="
 # Ubiquiti NanoStation features
-       option antenna  internal
-       option polarity auto # (auto|horizontal|vertical)
+       option antenna  auto # (auto|horizontal|vertical|external)
 "
                        ;;
                esac
This page took 0.020242 seconds and 4 git commands to generate.