mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 22:53:09 +02:00
remove LED api abuse from r13032 per request fom nbd, gpioctl is now built by defualt
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13039 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
4d09600736
commit
256a5ee7f7
@ -177,12 +177,11 @@ enable_atheros() {
|
|||||||
config_get antrx "$device" rxantenna
|
config_get antrx "$device" rxantenna
|
||||||
config_get anttx "$device" txantenna
|
config_get anttx "$device" txantenna
|
||||||
config_get_bool softled "$device" softled 1
|
config_get_bool softled "$device" softled 1
|
||||||
config_get_bool gpioctl "$device" gpioctl
|
|
||||||
|
|
||||||
devname="$(cat /proc/sys/dev/$device/dev_name)"
|
devname="$(cat /proc/sys/dev/$device/dev_name)"
|
||||||
antgpio=
|
antgpio=
|
||||||
case "$devname" in
|
case "$devname" in
|
||||||
NanoStation2) antgpio=wlan; [ -n "$gpioctl" ] && gpioctl=0;;
|
NanoStation2) antgpio=7;;
|
||||||
NanoStation5) antgpio=1;;
|
NanoStation5) antgpio=1;;
|
||||||
esac
|
esac
|
||||||
if [ -n "$antgpio" ]; then
|
if [ -n "$antgpio" ]; then
|
||||||
@ -198,20 +197,12 @@ enable_atheros() {
|
|||||||
[ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
|
[ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
|
||||||
case "$antenna" in
|
case "$antenna" in
|
||||||
horizontal|vertical|auto)
|
horizontal|vertical|auto)
|
||||||
if [ "$gpioctl" = "0" ]; then
|
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
||||||
echo 1 >/sys/class/leds/$antgpio/brightness 2>&1
|
gpioctl "set" "$antgpio" >/dev/null 2>&1
|
||||||
else
|
|
||||||
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
|
||||||
gpioctl "set" "$antgpio" >/dev/null 2>&1
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
external)
|
external)
|
||||||
if [ "$gpioctl" = "0" ]; then
|
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
||||||
echo 0 >/sys/class/leds/$antgpio/brightness
|
gpioctl "clear" "$antgpio" >/dev/null 2>&1
|
||||||
else
|
|
||||||
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
|
||||||
gpioctl "clear" "$antgpio" >/dev/null 2>&1
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user