2006-11-23 18:27:22 +00:00
|
|
|
#!/bin/sh
|
|
|
|
append DRIVERS "atheros"
|
|
|
|
|
2011-03-08 12:54:13 +00:00
|
|
|
find_atheros_phy() {
|
|
|
|
local device="$1"
|
|
|
|
|
|
|
|
local macaddr="$(config_get "$device" macaddr | tr 'A-Z' 'a-z')"
|
|
|
|
config_get phy "$device" phy
|
|
|
|
[ -z "$phy" -a -n "$macaddr" ] && {
|
|
|
|
cd /proc/sys/dev
|
|
|
|
for phy in $(ls -d wifi* 2>&-); do
|
|
|
|
[ "$macaddr" = "$(cat /sys/class/net/${phy}/address)" ] || continue
|
|
|
|
config_set "$device" phy "$phy"
|
|
|
|
break
|
|
|
|
done
|
|
|
|
config_get phy "$device" phy
|
|
|
|
}
|
|
|
|
[ -n "$phy" -a -d "/proc/sys/dev/$phy" ] || {
|
|
|
|
echo "phy for wifi device $1 not found"
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
[ -z "$macaddr" ] && {
|
|
|
|
config_set "$device" macaddr "$(cat /sys/class/net/${phy}/address)"
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
scan_atheros() {
|
|
|
|
local device="$1"
|
|
|
|
local wds
|
2011-09-08 23:31:42 +00:00
|
|
|
local adhoc ahdemo sta ap monitor disabled
|
2011-03-08 12:54:13 +00:00
|
|
|
|
|
|
|
[ ${device%[0-9]} = "wifi" ] && config_set "$device" phy "$device"
|
2006-11-23 18:27:22 +00:00
|
|
|
|
|
|
|
config_get vifs "$device" vifs
|
|
|
|
for vif in $vifs; do
|
2011-09-08 23:31:42 +00:00
|
|
|
config_get_bool disabled "$vif" disabled 0
|
|
|
|
[ $disabled = 0 ] || continue
|
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
config_get ifname "$vif" ifname
|
|
|
|
config_set "$vif" ifname "${ifname:-ath}"
|
|
|
|
|
|
|
|
config_get mode "$vif" mode
|
|
|
|
case "$mode" in
|
2008-07-26 18:32:54 +00:00
|
|
|
adhoc|ahdemo|sta|ap|monitor)
|
2006-11-23 18:27:22 +00:00
|
|
|
append $mode "$vif"
|
|
|
|
;;
|
|
|
|
wds)
|
2006-12-22 07:58:06 +00:00
|
|
|
config_get ssid "$vif" ssid
|
2008-08-01 00:26:44 +00:00
|
|
|
[ -z "$ssid" ] && continue
|
|
|
|
|
|
|
|
config_set "$vif" wds 1
|
|
|
|
config_set "$vif" mode sta
|
|
|
|
mode="sta"
|
|
|
|
addr="$ssid"
|
2006-12-22 07:58:06 +00:00
|
|
|
${addr:+append $mode "$vif"}
|
2006-11-23 18:27:22 +00:00
|
|
|
;;
|
|
|
|
*) echo "$device($vif): Invalid mode, ignored."; continue;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2009-01-01 13:59:06 +00:00
|
|
|
case "${adhoc:+1}:${sta:+1}:${ap:+1}" in
|
2006-11-23 18:27:22 +00:00
|
|
|
# valid mode combinations
|
2006-12-22 07:58:06 +00:00
|
|
|
1::) wds="";;
|
2007-05-31 03:41:01 +00:00
|
|
|
1::1);;
|
2006-11-23 18:27:22 +00:00
|
|
|
:1:1)config_set "$device" nosbeacon 1;; # AP+STA, can't use beacon timers for STA
|
|
|
|
:1:);;
|
|
|
|
::1);;
|
2007-01-08 16:39:40 +00:00
|
|
|
::);;
|
2006-11-23 18:27:22 +00:00
|
|
|
*) echo "$device: Invalid mode combination in config"; return 1;;
|
|
|
|
esac
|
|
|
|
|
2008-11-14 23:35:12 +00:00
|
|
|
config_set "$device" vifs "${sta:+$sta }${ap:+$ap }${adhoc:+$adhoc }${ahdemo:+$ahdemo }${wds:+$wds }${monitor:+$monitor}"
|
2006-12-22 07:58:06 +00:00
|
|
|
}
|
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
|
|
|
|
disable_atheros() (
|
|
|
|
local device="$1"
|
2006-12-22 07:58:06 +00:00
|
|
|
|
2011-03-08 12:54:13 +00:00
|
|
|
find_atheros_phy "$device" || return 0
|
|
|
|
config_get phy "$device" phy
|
|
|
|
|
2007-07-22 18:32:47 +00:00
|
|
|
set_wifi_down "$device"
|
2011-03-26 16:56:39 +00:00
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
include /lib/network
|
|
|
|
cd /proc/sys/net
|
|
|
|
for dev in *; do
|
2011-03-08 12:54:13 +00:00
|
|
|
grep "$phy" "$dev/%parent" >/dev/null 2>/dev/null && {
|
2008-10-29 17:26:49 +00:00
|
|
|
[ -f "/var/run/wifi-${dev}.pid" ] &&
|
|
|
|
kill "$(cat "/var/run/wifi-${dev}.pid")"
|
|
|
|
ifconfig "$dev" down
|
2006-11-23 18:27:22 +00:00
|
|
|
unbridge "$dev"
|
2006-12-22 07:58:06 +00:00
|
|
|
wlanconfig "$dev" destroy
|
2006-11-23 18:27:22 +00:00
|
|
|
}
|
|
|
|
done
|
2006-12-22 07:58:06 +00:00
|
|
|
return 0
|
2006-11-23 18:27:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
enable_atheros() {
|
2007-08-04 11:31:40 +00:00
|
|
|
local device="$1"
|
2009-05-06 11:52:24 +00:00
|
|
|
|
2011-03-08 12:54:13 +00:00
|
|
|
find_atheros_phy "$device" || return 0
|
|
|
|
config_get phy "$device" phy
|
|
|
|
|
2009-05-06 11:52:24 +00:00
|
|
|
config_get regdomain "$device" regdomain
|
2011-03-08 12:54:13 +00:00
|
|
|
[ -n "$regdomain" ] && echo "$regdomain" > /proc/sys/dev/$phy/regdomain
|
2009-05-06 11:52:24 +00:00
|
|
|
|
2009-01-22 22:00:07 +00:00
|
|
|
config_get country "$device" country
|
2011-03-26 16:56:39 +00:00
|
|
|
case "$country" in
|
|
|
|
[A-Za-z]*) country=`grep -i "$country" /lib/wifi/madwifi_countrycodes.txt |cut -d " " -f 2`;;
|
|
|
|
[0-9]*) ;;
|
|
|
|
*) country="" ;;
|
|
|
|
esac
|
|
|
|
[ -n "$country" ] && echo "$country" > /proc/sys/dev/$phy/countrycode
|
2009-05-06 11:52:24 +00:00
|
|
|
|
2009-05-06 12:12:29 +00:00
|
|
|
config_get_bool outdoor "$device" outdoor "0"
|
2011-03-08 12:54:13 +00:00
|
|
|
echo "$outdoor" > /proc/sys/dev/$phy/outdoor
|
2009-05-06 11:52:24 +00:00
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
config_get channel "$device" channel
|
|
|
|
config_get vifs "$device" vifs
|
2009-01-31 16:08:57 +00:00
|
|
|
config_get txpower "$device" txpower
|
2008-01-25 20:24:25 +00:00
|
|
|
|
|
|
|
[ auto = "$channel" ] && channel=0
|
|
|
|
|
2009-05-20 21:52:15 +00:00
|
|
|
config_get_bool antdiv "$device" diversity
|
|
|
|
config_get antrx "$device" rxantenna
|
|
|
|
config_get anttx "$device" txantenna
|
2010-03-14 12:25:23 +00:00
|
|
|
config_get_bool softled "$device" softled
|
2009-12-19 22:19:19 +00:00
|
|
|
config_get antenna "$device" antenna
|
2009-05-20 21:52:15 +00:00
|
|
|
|
2011-03-08 12:54:13 +00:00
|
|
|
devname="$(cat /proc/sys/dev/$phy/dev_name)"
|
2009-10-17 22:11:14 +00:00
|
|
|
local antgpio=
|
|
|
|
local invert=
|
2009-05-20 21:52:15 +00:00
|
|
|
case "$devname" in
|
2009-10-17 22:11:14 +00:00
|
|
|
NanoStation2) antgpio=7; invert=1;;
|
|
|
|
NanoStation5) antgpio=1; invert=1;;
|
|
|
|
"NanoStation Loco2") antgpio=2;;
|
2009-12-19 22:19:19 +00:00
|
|
|
"NanoStation Loco5")
|
|
|
|
case "$antenna" in
|
|
|
|
horizontal) antdiv=0; anttx=1; antrx=1;;
|
|
|
|
vertical) antdiv=0; anttx=2; antrx=2;;
|
|
|
|
*) antdiv=1; anttx=0; antrx=0;;
|
|
|
|
esac
|
|
|
|
;;
|
2009-05-20 21:52:15 +00:00
|
|
|
esac
|
2009-10-17 22:11:14 +00:00
|
|
|
if [ -n "$invert" ]; then
|
|
|
|
_set="clear"
|
|
|
|
_clear="set"
|
|
|
|
else
|
|
|
|
_set="set"
|
|
|
|
_clear="clear"
|
|
|
|
fi
|
2009-05-20 21:52:15 +00:00
|
|
|
if [ -n "$antgpio" ]; then
|
|
|
|
softled=0
|
2009-12-19 22:19:19 +00:00
|
|
|
case "$devname" in
|
|
|
|
"NanoStation Loco2")
|
|
|
|
antdiv=0
|
|
|
|
antrx=1
|
|
|
|
anttx=1
|
|
|
|
case "$antenna" in
|
|
|
|
horizontal) gpioval=0;;
|
|
|
|
*) gpioval=1;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
case "$antenna" in
|
|
|
|
external) antdiv=0; antrx=1; anttx=1; gpioval=1;;
|
|
|
|
horizontal) antdiv=0; antrx=1; anttx=1; gpioval=0;;
|
|
|
|
vertical) antdiv=0; antrx=2; anttx=2; gpioval=0;;
|
|
|
|
auto) antdiv=1; antrx=0; anttx=0; gpioval=0;;
|
|
|
|
esac
|
|
|
|
;;
|
2009-05-20 21:52:15 +00:00
|
|
|
esac
|
2011-03-26 16:56:39 +00:00
|
|
|
|
2009-05-20 21:52:15 +00:00
|
|
|
[ -x "$(which gpioctl 2>/dev/null)" ] || antenna=
|
2009-10-17 22:11:14 +00:00
|
|
|
gpioctl "dirout" "$antgpio" >/dev/null 2>&1
|
2009-12-19 22:19:19 +00:00
|
|
|
case "$gpioval" in
|
|
|
|
0)
|
2009-10-17 22:11:14 +00:00
|
|
|
gpioctl "$_clear" "$antgpio" >/dev/null 2>&1
|
2009-05-20 21:52:15 +00:00
|
|
|
;;
|
2009-12-19 22:19:19 +00:00
|
|
|
1)
|
2009-10-17 22:11:14 +00:00
|
|
|
gpioctl "$_set" "$antgpio" >/dev/null 2>&1
|
2009-05-20 21:52:15 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2011-03-08 12:54:13 +00:00
|
|
|
[ -n "$antdiv" ] && sysctl -w dev."$phy".diversity="$antdiv" >&-
|
|
|
|
[ -n "$antrx" ] && sysctl -w dev."$phy".rxantenna="$antrx" >&-
|
|
|
|
[ -n "$anttx" ] && sysctl -w dev."$phy".txantenna="$anttx" >&-
|
|
|
|
[ -n "$softled" ] && sysctl -w dev."$phy".softled="$softled" >&-
|
2009-05-20 21:52:15 +00:00
|
|
|
|
|
|
|
config_get distance "$device" distance
|
2011-03-08 12:54:13 +00:00
|
|
|
[ -n "$distance" ] && sysctl -w dev."$phy".distance="$distance" >&-
|
2009-05-20 21:52:15 +00:00
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
for vif in $vifs; do
|
2009-06-03 13:53:10 +00:00
|
|
|
local start_hostapd= vif_txpower= nosbeacon=
|
2006-11-23 18:27:22 +00:00
|
|
|
config_get ifname "$vif" ifname
|
|
|
|
config_get enc "$vif" encryption
|
2008-08-11 21:38:50 +00:00
|
|
|
config_get eap_type "$vif" eap_type
|
2006-11-23 18:27:22 +00:00
|
|
|
config_get mode "$vif" mode
|
2011-03-26 16:56:39 +00:00
|
|
|
|
2008-10-16 21:26:24 +00:00
|
|
|
case "$mode" in
|
2009-07-16 11:30:01 +00:00
|
|
|
sta) config_get_bool nosbeacon "$device" nosbeacon;;
|
|
|
|
adhoc) config_get_bool nosbeacon "$vif" sw_merge 1;;
|
2008-10-16 21:26:24 +00:00
|
|
|
esac
|
2011-03-26 16:56:39 +00:00
|
|
|
|
2009-07-16 11:30:01 +00:00
|
|
|
[ "$nosbeacon" = 1 ] || nosbeacon=""
|
2011-03-08 12:54:13 +00:00
|
|
|
ifname=$(wlanconfig "$ifname" create wlandev "$phy" wlanmode "$mode" ${nosbeacon:+nosbeacon})
|
2006-11-23 18:27:22 +00:00
|
|
|
[ $? -ne 0 ] && {
|
2006-12-22 07:58:06 +00:00
|
|
|
echo "enable_atheros($device): Failed to set up $mode vif $ifname" >&2
|
2006-11-23 18:27:22 +00:00
|
|
|
continue
|
|
|
|
}
|
2006-12-22 07:58:06 +00:00
|
|
|
config_set "$vif" ifname "$ifname"
|
|
|
|
|
2008-12-31 19:09:26 +00:00
|
|
|
config_get hwmode "$device" hwmode
|
|
|
|
[ -z "$hwmode" ] && config_get hwmode "$device" mode
|
2008-08-21 14:54:51 +00:00
|
|
|
|
2009-07-12 15:37:59 +00:00
|
|
|
pureg=0
|
|
|
|
case "$hwmode" in
|
|
|
|
*b) hwmode=11b;;
|
|
|
|
*bg) hwmode=11g;;
|
|
|
|
*g) hwmode=11g; pureg=1;;
|
|
|
|
*gdt) hwmode=11gdt;;
|
|
|
|
*a) hwmode=11a;;
|
|
|
|
*adt) hwmode=11adt;;
|
|
|
|
*ast) hwmode=11ast;;
|
|
|
|
*fh) hwmode=fh;;
|
|
|
|
*) hwmode=auto;;
|
|
|
|
esac
|
|
|
|
iwpriv "$ifname" mode "$hwmode"
|
|
|
|
iwpriv "$ifname" pureg "$pureg"
|
|
|
|
|
|
|
|
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null
|
|
|
|
|
2007-06-02 02:22:01 +00:00
|
|
|
config_get_bool hidden "$vif" hidden 0
|
2007-02-27 23:10:53 +00:00
|
|
|
iwpriv "$ifname" hide_ssid "$hidden"
|
2006-12-22 08:02:59 +00:00
|
|
|
|
2007-11-28 03:07:18 +00:00
|
|
|
config_get ff "$vif" ff
|
|
|
|
if [ -n "$ff" ]; then
|
|
|
|
iwpriv "$ifname" ff "$ff"
|
|
|
|
fi
|
2007-06-02 02:22:01 +00:00
|
|
|
|
2006-12-22 07:58:06 +00:00
|
|
|
config_get wds "$vif" wds
|
|
|
|
case "$wds" in
|
|
|
|
1|on|enabled) wds=1;;
|
|
|
|
*) wds=0;;
|
|
|
|
esac
|
2009-07-16 11:30:01 +00:00
|
|
|
iwpriv "$ifname" wds "$wds" >/dev/null 2>&1
|
2006-12-22 07:58:06 +00:00
|
|
|
|
2008-08-01 00:38:47 +00:00
|
|
|
[ "$mode" = ap -a "$wds" = 1 ] && {
|
|
|
|
config_get_bool wdssep "$vif" wdssep 1
|
|
|
|
[ -n "$wdssep" ] && iwpriv "$ifname" wdssep "$wdssep"
|
|
|
|
}
|
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
case "$enc" in
|
2010-10-27 11:25:59 +00:00
|
|
|
wep*)
|
|
|
|
case "$enc" in
|
2010-10-27 11:46:01 +00:00
|
|
|
*shared*) iwpriv "$ifname" authmode 2;;
|
|
|
|
*) iwpriv "$ifname" authmode 1;;
|
2010-10-27 17:46:31 +00:00
|
|
|
esac
|
2006-11-23 18:27:22 +00:00
|
|
|
for idx in 1 2 3 4; do
|
|
|
|
config_get key "$vif" "key${idx}"
|
|
|
|
iwconfig "$ifname" enc "[$idx]" "${key:-off}"
|
|
|
|
done
|
|
|
|
config_get key "$vif" key
|
2007-03-24 01:01:18 +00:00
|
|
|
key="${key:-1}"
|
|
|
|
case "$key" in
|
|
|
|
[1234]) iwconfig "$ifname" enc "[$key]";;
|
|
|
|
*) iwconfig "$ifname" enc "$key";;
|
|
|
|
esac
|
2006-11-23 18:27:22 +00:00
|
|
|
;;
|
2008-08-28 12:41:55 +00:00
|
|
|
psk*|wpa*)
|
2008-08-28 12:13:36 +00:00
|
|
|
start_hostapd=1
|
2008-08-29 01:07:53 +00:00
|
|
|
config_get key "$vif" key
|
2007-03-15 03:21:35 +00:00
|
|
|
;;
|
2006-11-23 18:27:22 +00:00
|
|
|
esac
|
2006-12-22 07:58:06 +00:00
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
case "$mode" in
|
2009-04-19 21:09:02 +00:00
|
|
|
sta|adhoc|ahdemo)
|
2007-03-18 12:59:44 +00:00
|
|
|
config_get addr "$vif" bssid
|
|
|
|
[ -z "$addr" ] || {
|
|
|
|
iwconfig "$ifname" ap "$addr"
|
|
|
|
}
|
|
|
|
;;
|
2006-12-22 07:58:06 +00:00
|
|
|
esac
|
2007-03-15 03:21:35 +00:00
|
|
|
|
2009-09-03 19:31:48 +00:00
|
|
|
config_get_bool uapsd "$vif" uapsd 0
|
|
|
|
iwpriv "$ifname" uapsd "$uapsd"
|
|
|
|
|
2007-11-28 19:25:54 +00:00
|
|
|
config_get_bool bgscan "$vif" bgscan
|
|
|
|
[ -n "$bgscan" ] && iwpriv "$ifname" bgscan "$bgscan"
|
2007-03-15 03:21:35 +00:00
|
|
|
|
2007-11-28 20:34:00 +00:00
|
|
|
config_get rate "$vif" rate
|
|
|
|
[ -n "$rate" ] && iwconfig "$ifname" rate "${rate%%.*}"
|
|
|
|
|
2008-01-17 01:23:38 +00:00
|
|
|
config_get mcast_rate "$vif" mcast_rate
|
|
|
|
[ -n "$mcast_rate" ] && iwpriv "$ifname" mcast_rate "${mcast_rate%%.*}"
|
|
|
|
|
2007-06-27 13:25:55 +00:00
|
|
|
config_get frag "$vif" frag
|
2007-11-28 19:25:54 +00:00
|
|
|
[ -n "$frag" ] && iwconfig "$ifname" frag "${frag%%.*}"
|
2007-06-27 13:25:55 +00:00
|
|
|
|
|
|
|
config_get rts "$vif" rts
|
2007-11-28 19:25:54 +00:00
|
|
|
[ -n "$rts" ] && iwconfig "$ifname" rts "${rts%%.*}"
|
2007-06-27 13:25:55 +00:00
|
|
|
|
2009-06-11 12:40:07 +00:00
|
|
|
config_get_bool comp "$vif" compression 0
|
2009-07-16 11:30:01 +00:00
|
|
|
iwpriv "$ifname" compression "$comp" >/dev/null 2>&1
|
2007-11-28 20:34:00 +00:00
|
|
|
|
2011-04-06 20:50:14 +00:00
|
|
|
config_get minrate "$vif" minrate
|
2008-03-13 14:54:26 +00:00
|
|
|
[ -n "$minrate" ] && iwpriv "$ifname" minrate "$minrate"
|
|
|
|
|
2011-04-06 20:50:14 +00:00
|
|
|
config_get maxrate "$vif" maxrate
|
2008-03-13 14:54:26 +00:00
|
|
|
[ -n "$maxrate" ] && iwpriv "$ifname" maxrate "$maxrate"
|
|
|
|
|
2007-11-28 20:34:00 +00:00
|
|
|
config_get_bool burst "$vif" bursting
|
|
|
|
[ -n "$burst" ] && iwpriv "$ifname" burst "$burst"
|
|
|
|
|
|
|
|
config_get_bool wmm "$vif" wmm
|
|
|
|
[ -n "$wmm" ] && iwpriv "$ifname" wmm "$wmm"
|
|
|
|
|
2008-01-17 01:23:38 +00:00
|
|
|
config_get_bool xr "$vif" xr
|
|
|
|
[ -n "$xr" ] && iwpriv "$ifname" xr "$xr"
|
|
|
|
|
|
|
|
config_get_bool ar "$vif" ar
|
|
|
|
[ -n "$ar" ] && iwpriv "$ifname" ar "$ar"
|
|
|
|
|
2009-03-26 23:04:23 +00:00
|
|
|
config_get_bool beacon_power "$vif" beacon_power
|
|
|
|
[ -n "$beacon_power" ] && iwpriv "$ifname" beacon_pwr "$beacon_power"
|
|
|
|
|
2008-02-05 22:25:29 +00:00
|
|
|
config_get_bool doth "$vif" doth 0
|
|
|
|
[ -n "$doth" ] && iwpriv "$ifname" doth "$doth"
|
|
|
|
|
2009-01-01 17:29:58 +00:00
|
|
|
config_get_bool probereq "$vif" probereq
|
|
|
|
[ -n "$probereq" ] && iwpriv "$ifname" probereq "$probereq"
|
|
|
|
|
2007-11-28 20:34:00 +00:00
|
|
|
config_get maclist "$vif" maclist
|
|
|
|
[ -n "$maclist" ] && {
|
|
|
|
# flush MAC list
|
|
|
|
iwpriv "$ifname" maccmd 3
|
|
|
|
for mac in $maclist; do
|
|
|
|
iwpriv "$ifname" addmac "$mac"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
config_get macpolicy "$vif" macpolicy
|
|
|
|
case "$macpolicy" in
|
|
|
|
allow)
|
|
|
|
iwpriv "$ifname" maccmd 1
|
|
|
|
;;
|
|
|
|
deny)
|
|
|
|
iwpriv "$ifname" maccmd 2
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# default deny policy if mac list exists
|
|
|
|
[ -n "$maclist" ] && iwpriv "$ifname" maccmd 2
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2006-12-22 07:58:06 +00:00
|
|
|
ifconfig "$ifname" up
|
2008-12-03 21:34:04 +00:00
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
local net_cfg bridge
|
|
|
|
net_cfg="$(find_net_config "$vif")"
|
|
|
|
[ -z "$net_cfg" ] || {
|
|
|
|
bridge="$(bridge_interface "$net_cfg")"
|
2006-12-22 07:58:06 +00:00
|
|
|
config_set "$vif" bridge "$bridge"
|
|
|
|
start_net "$ifname" "$net_cfg"
|
2006-11-23 18:27:22 +00:00
|
|
|
}
|
2009-05-31 20:42:04 +00:00
|
|
|
|
|
|
|
config_get ssid "$vif" ssid
|
2009-05-17 02:01:03 +00:00
|
|
|
[ -n "$ssid" ] && {
|
|
|
|
iwconfig "$ifname" essid on
|
2011-04-05 15:09:38 +00:00
|
|
|
iwconfig "$ifname" essid ${ssid:+-- }"$ssid"
|
2009-05-17 02:01:03 +00:00
|
|
|
}
|
2009-05-31 20:42:04 +00:00
|
|
|
|
2007-07-22 18:32:47 +00:00
|
|
|
set_wifi_up "$vif" "$ifname"
|
2009-01-22 22:00:07 +00:00
|
|
|
|
|
|
|
# TXPower settings only work if device is up already
|
2009-01-31 16:08:57 +00:00
|
|
|
# while atheros hardware theoretically is capable of per-vif (even per-packet) txpower
|
|
|
|
# adjustment it does not work with the current atheros hal/madwifi driver
|
|
|
|
|
|
|
|
config_get vif_txpower "$vif" txpower
|
|
|
|
# use vif_txpower (from wifi-iface) instead of txpower (from wifi-device) if
|
|
|
|
# the latter doesn't exist
|
|
|
|
txpower="${txpower:-$vif_txpower}"
|
|
|
|
[ -z "$txpower" ] || iwconfig "$ifname" txpower "${txpower%%.*}"
|
2009-01-22 22:00:07 +00:00
|
|
|
|
2006-12-22 07:58:06 +00:00
|
|
|
case "$mode" in
|
|
|
|
ap)
|
2007-05-08 01:11:33 +00:00
|
|
|
config_get_bool isolate "$vif" isolate 0
|
2007-05-10 06:54:47 +00:00
|
|
|
iwpriv "$ifname" ap_bridge "$((isolate^1))"
|
2007-05-08 01:11:33 +00:00
|
|
|
|
2008-08-28 12:13:36 +00:00
|
|
|
if [ -n "$start_hostapd" ] && eval "type hostapd_setup_vif" 2>/dev/null >/dev/null; then
|
2007-04-19 11:42:39 +00:00
|
|
|
hostapd_setup_vif "$vif" madwifi || {
|
2008-08-12 14:22:42 +00:00
|
|
|
echo "enable_atheros($device): Failed to set up hostapd for interface $ifname" >&2
|
2007-04-19 11:42:39 +00:00
|
|
|
# make sure this wifi interface won't accidentally stay open without encryption
|
|
|
|
ifconfig "$ifname" down
|
|
|
|
wlanconfig "$ifname" destroy
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fi
|
2006-12-22 07:58:06 +00:00
|
|
|
;;
|
|
|
|
wds|sta)
|
2008-08-12 14:22:42 +00:00
|
|
|
if eval "type wpa_supplicant_setup_vif" 2>/dev/null >/dev/null; then
|
|
|
|
wpa_supplicant_setup_vif "$vif" madwifi || {
|
|
|
|
echo "enable_atheros($device): Failed to set up wpa_supplicant for interface $ifname" >&2
|
|
|
|
ifconfig "$ifname" down
|
|
|
|
wlanconfig "$ifname" destroy
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
fi
|
2006-12-22 07:58:06 +00:00
|
|
|
;;
|
|
|
|
esac
|
2006-11-23 18:27:22 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2011-03-15 00:43:50 +00:00
|
|
|
check_atheros_device() {
|
2011-03-08 12:54:13 +00:00
|
|
|
[ ${1%[0-9]} = "wifi" ] && config_set "$1" phy "$1"
|
|
|
|
config_get phy "$1" phy
|
|
|
|
[ -z "$phy" ] && {
|
|
|
|
find_atheros_phy "$1" >/dev/null || return 0
|
|
|
|
config_get phy "$1" phy
|
|
|
|
}
|
|
|
|
[ "$phy" = "$dev" ] && found=1
|
|
|
|
}
|
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
|
|
|
|
detect_atheros() {
|
2011-03-08 12:54:13 +00:00
|
|
|
devidx=0
|
|
|
|
config_load wireless
|
|
|
|
while :; do
|
|
|
|
config_get type "radio$devidx" type
|
|
|
|
[ -n "$type" ] || break
|
|
|
|
devidx=$(($devidx + 1))
|
|
|
|
done
|
2006-11-23 18:27:22 +00:00
|
|
|
cd /proc/sys/dev
|
|
|
|
[ -d ath ] || return
|
2007-03-24 00:43:05 +00:00
|
|
|
for dev in $(ls -d wifi* 2>&-); do
|
2011-03-08 12:54:13 +00:00
|
|
|
found=0
|
2011-03-15 00:43:50 +00:00
|
|
|
config_foreach check_atheros_device wifi-device
|
2011-03-08 12:54:13 +00:00
|
|
|
[ "$found" -gt 0 ] && continue
|
|
|
|
|
2008-10-23 01:07:50 +00:00
|
|
|
devname="$(cat /proc/sys/dev/$dev/dev_name)"
|
|
|
|
case "$devname" in
|
2009-12-19 22:19:19 +00:00
|
|
|
"NanoStation Loco2")
|
|
|
|
EXTRA_DEV="
|
|
|
|
# Ubiquiti NanoStation Loco2 features
|
|
|
|
option antenna vertical # (horizontal|vertical)
|
|
|
|
"
|
|
|
|
;;
|
|
|
|
"NanoStation Loco5")
|
|
|
|
EXTRA_DEV="
|
|
|
|
# Ubiquiti NanoStation Loco5 features
|
|
|
|
option antenna auto # (auto|horizontal|vertical)
|
|
|
|
"
|
|
|
|
;;
|
2008-10-23 01:07:50 +00:00
|
|
|
NanoStation*)
|
|
|
|
EXTRA_DEV="
|
|
|
|
# Ubiquiti NanoStation features
|
2008-10-23 04:06:30 +00:00
|
|
|
option antenna auto # (auto|horizontal|vertical|external)
|
2008-10-23 01:07:50 +00:00
|
|
|
"
|
|
|
|
;;
|
|
|
|
esac
|
2011-03-08 12:54:13 +00:00
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
cat <<EOF
|
2011-03-08 12:54:13 +00:00
|
|
|
config wifi-device radio$devidx
|
2006-11-23 18:27:22 +00:00
|
|
|
option type atheros
|
2008-01-25 20:24:25 +00:00
|
|
|
option channel auto
|
2011-03-08 12:54:13 +00:00
|
|
|
option macaddr $(cat /sys/class/net/${dev}/address)
|
2008-10-23 01:07:50 +00:00
|
|
|
$EXTRA_DEV
|
2007-07-04 11:15:12 +00:00
|
|
|
# REMOVE THIS LINE TO ENABLE WIFI:
|
|
|
|
option disabled 1
|
2006-11-23 18:27:22 +00:00
|
|
|
|
|
|
|
config wifi-iface
|
2011-03-08 12:54:13 +00:00
|
|
|
option device radio$devidx
|
2007-03-15 23:17:16 +00:00
|
|
|
option network lan
|
2007-03-15 03:21:35 +00:00
|
|
|
option mode ap
|
|
|
|
option ssid OpenWrt
|
2006-11-23 18:27:22 +00:00
|
|
|
option encryption none
|
2011-03-17 07:07:03 +00:00
|
|
|
|
2006-11-23 18:27:22 +00:00
|
|
|
EOF
|
2011-03-08 12:54:13 +00:00
|
|
|
devidx=$(($devidx + 1))
|
2006-11-23 18:27:22 +00:00
|
|
|
done
|
|
|
|
}
|