madwifi: add antenna gpio support for nanostation loco2
SVN-Revision: 18055
This commit is contained in:
parent
f283279dd8
commit
f970dff78d
1 changed files with 15 additions and 7 deletions
|
@ -90,11 +90,20 @@ enable_atheros() {
|
||||||
config_get_bool softled "$device" softled 1
|
config_get_bool softled "$device" softled 1
|
||||||
|
|
||||||
devname="$(cat /proc/sys/dev/$device/dev_name)"
|
devname="$(cat /proc/sys/dev/$device/dev_name)"
|
||||||
antgpio=
|
local antgpio=
|
||||||
|
local invert=
|
||||||
case "$devname" in
|
case "$devname" in
|
||||||
NanoStation2) antgpio=7;;
|
NanoStation2) antgpio=7; invert=1;;
|
||||||
NanoStation5) antgpio=1;;
|
NanoStation5) antgpio=1; invert=1;;
|
||||||
|
"NanoStation Loco2") antgpio=2;;
|
||||||
esac
|
esac
|
||||||
|
if [ -n "$invert" ]; then
|
||||||
|
_set="clear"
|
||||||
|
_clear="set"
|
||||||
|
else
|
||||||
|
_set="set"
|
||||||
|
_clear="clear"
|
||||||
|
fi
|
||||||
if [ -n "$antgpio" ]; then
|
if [ -n "$antgpio" ]; then
|
||||||
softled=0
|
softled=0
|
||||||
config_get antenna "$device" antenna
|
config_get antenna "$device" antenna
|
||||||
|
@ -106,14 +115,13 @@ enable_atheros() {
|
||||||
esac
|
esac
|
||||||
|
|
||||||
[ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
|
[ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
|
||||||
|
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
||||||
case "$antenna" in
|
case "$antenna" in
|
||||||
horizontal|vertical|auto)
|
horizontal|vertical|auto)
|
||||||
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
gpioctl "$_clear" "$antgpio" >/dev/null 2>&1
|
||||||
gpioctl "set" "$antgpio" >/dev/null 2>&1
|
|
||||||
;;
|
;;
|
||||||
external)
|
external)
|
||||||
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
gpioctl "$_set" "$antgpio" >/dev/null 2>&1
|
||||||
gpioctl "clear" "$antgpio" >/dev/null 2>&1
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue