2007-10-05 17:56:15 +00:00
|
|
|
#!/bin/sh
|
|
|
|
append DRIVERS "mac80211"
|
|
|
|
|
2012-10-18 00:09:55 +00:00
|
|
|
lookup_phy() {
|
|
|
|
[ -n "$phy" ] && {
|
2012-10-18 11:42:42 +00:00
|
|
|
[ -d /sys/class/ieee80211/$phy ] && return
|
2012-10-18 00:09:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
local devpath
|
|
|
|
config_get devpath "$device" path
|
2014-07-29 09:48:07 +00:00
|
|
|
[ -n "$devpath" ] && {
|
2016-01-21 15:51:52 +00:00
|
|
|
for phy in $(ls /sys/class/ieee80211 2>/dev/null); do
|
|
|
|
case "$(readlink -f /sys/class/ieee80211/$phy/device)" in
|
|
|
|
*$devpath) return;;
|
2016-01-21 13:28:04 +00:00
|
|
|
esac
|
2014-07-29 09:48:07 +00:00
|
|
|
done
|
2012-10-18 00:09:55 +00:00
|
|
|
}
|
2009-10-02 15:18:44 +00:00
|
|
|
|
|
|
|
local macaddr="$(config_get "$device" macaddr | tr 'A-Z' 'a-z')"
|
2012-10-18 00:09:55 +00:00
|
|
|
[ -n "$macaddr" ] && {
|
2014-10-09 09:04:24 +00:00
|
|
|
for _phy in /sys/class/ieee80211/*; do
|
|
|
|
[ -e "$_phy" ] || continue
|
|
|
|
|
|
|
|
[ "$macaddr" = "$(cat ${_phy}/macaddress)" ] || continue
|
|
|
|
phy="${_phy##*/}"
|
2012-10-18 00:09:55 +00:00
|
|
|
return
|
2009-10-02 15:18:44 +00:00
|
|
|
done
|
|
|
|
}
|
2012-10-18 00:09:55 +00:00
|
|
|
phy=
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
find_mac80211_phy() {
|
|
|
|
local device="$1"
|
|
|
|
|
|
|
|
config_get phy "$device" phy
|
|
|
|
lookup_phy
|
2009-10-02 15:18:44 +00:00
|
|
|
[ -n "$phy" -a -d "/sys/class/ieee80211/$phy" ] || {
|
|
|
|
echo "PHY for wifi device $1 not found"
|
|
|
|
return 1
|
|
|
|
}
|
2012-10-18 00:09:55 +00:00
|
|
|
config_set "$device" phy "$phy"
|
|
|
|
|
|
|
|
config_get macaddr "$device" macaddr
|
2009-10-02 15:18:44 +00:00
|
|
|
[ -z "$macaddr" ] && {
|
|
|
|
config_set "$device" macaddr "$(cat /sys/class/ieee80211/${phy}/macaddress)"
|
|
|
|
}
|
2012-10-18 00:09:55 +00:00
|
|
|
|
2009-10-02 15:18:44 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2011-03-15 00:44:02 +00:00
|
|
|
check_mac80211_device() {
|
2009-10-02 15:18:44 +00:00
|
|
|
config_get phy "$1" phy
|
|
|
|
[ -z "$phy" ] && {
|
2009-12-22 21:45:08 +00:00
|
|
|
find_mac80211_phy "$1" >/dev/null || return 0
|
2009-10-02 15:18:44 +00:00
|
|
|
config_get phy "$1" phy
|
|
|
|
}
|
|
|
|
[ "$phy" = "$dev" ] && found=1
|
|
|
|
}
|
|
|
|
|
2007-10-05 17:56:15 +00:00
|
|
|
detect_mac80211() {
|
2009-10-02 15:18:44 +00:00
|
|
|
devidx=0
|
|
|
|
config_load wireless
|
2009-11-28 18:00:59 +00:00
|
|
|
while :; do
|
2009-12-03 18:35:31 +00:00
|
|
|
config_get type "radio$devidx" type
|
2009-11-28 18:00:59 +00:00
|
|
|
[ -n "$type" ] || break
|
|
|
|
devidx=$(($devidx + 1))
|
|
|
|
done
|
2014-10-09 09:04:24 +00:00
|
|
|
|
|
|
|
for _dev in /sys/class/ieee80211/*; do
|
|
|
|
[ -e "$_dev" ] || continue
|
|
|
|
|
|
|
|
dev="${_dev##*/}"
|
|
|
|
|
2009-10-02 15:18:44 +00:00
|
|
|
found=0
|
2011-03-15 00:44:02 +00:00
|
|
|
config_foreach check_mac80211_device wifi-device
|
2009-10-02 15:18:44 +00:00
|
|
|
[ "$found" -gt 0 ] && continue
|
|
|
|
|
2009-10-02 19:41:04 +00:00
|
|
|
mode_band="g"
|
2010-10-13 12:22:48 +00:00
|
|
|
channel="11"
|
2014-02-03 13:31:44 +00:00
|
|
|
htmode=""
|
2014-05-06 15:43:08 +00:00
|
|
|
ht_capab=""
|
2014-02-03 13:31:44 +00:00
|
|
|
|
2014-05-03 18:38:20 +00:00
|
|
|
iw phy "$dev" info | grep -q 'Capabilities:' && htmode=HT20
|
2009-11-28 13:49:14 +00:00
|
|
|
iw phy "$dev" info | grep -q '2412 MHz' || { mode_band="a"; channel="36"; }
|
2009-10-02 15:18:44 +00:00
|
|
|
|
2014-02-03 13:31:44 +00:00
|
|
|
vht_cap=$(iw phy "$dev" info | grep -c 'VHT Capabilities')
|
2015-03-20 12:13:11 +00:00
|
|
|
cap_5ghz=$(iw phy "$dev" info | grep -c "Band 2")
|
|
|
|
[ "$vht_cap" -gt 0 -a "$cap_5ghz" -gt 0 ] && {
|
2014-02-03 13:31:44 +00:00
|
|
|
mode_band="a";
|
|
|
|
channel="36"
|
|
|
|
htmode="VHT80"
|
|
|
|
}
|
|
|
|
|
|
|
|
[ -n $htmode ] && append ht_capab " option htmode $htmode" "$N"
|
|
|
|
|
2015-01-28 12:07:08 +00:00
|
|
|
if [ -x /usr/bin/readlink -a -h /sys/class/ieee80211/${dev} ]; then
|
2012-10-18 00:09:55 +00:00
|
|
|
path="$(readlink -f /sys/class/ieee80211/${dev}/device)"
|
2015-01-28 12:07:08 +00:00
|
|
|
else
|
|
|
|
path=""
|
|
|
|
fi
|
|
|
|
if [ -n "$path" ]; then
|
2012-10-18 00:09:55 +00:00
|
|
|
path="${path##/sys/devices/}"
|
2016-01-21 13:28:09 +00:00
|
|
|
path="${path##platform/}"
|
2012-10-18 00:09:55 +00:00
|
|
|
dev_id=" option path '$path'"
|
|
|
|
else
|
|
|
|
dev_id=" option macaddr $(cat /sys/class/ieee80211/${dev}/macaddress)"
|
|
|
|
fi
|
|
|
|
|
2007-10-05 17:56:15 +00:00
|
|
|
cat <<EOF
|
2009-12-03 18:35:31 +00:00
|
|
|
config wifi-device radio$devidx
|
2007-10-05 17:56:15 +00:00
|
|
|
option type mac80211
|
2009-11-27 21:21:10 +00:00
|
|
|
option channel ${channel}
|
2014-05-03 21:14:59 +00:00
|
|
|
option hwmode 11${mode_band}
|
2012-10-18 00:09:55 +00:00
|
|
|
$dev_id
|
2010-01-20 02:26:05 +00:00
|
|
|
$ht_capab
|
2007-10-05 17:56:15 +00:00
|
|
|
# REMOVE THIS LINE TO ENABLE WIFI:
|
|
|
|
option disabled 1
|
|
|
|
|
|
|
|
config wifi-iface
|
2009-12-03 18:35:31 +00:00
|
|
|
option device radio$devidx
|
2009-10-02 15:18:44 +00:00
|
|
|
option network lan
|
|
|
|
option mode ap
|
|
|
|
option ssid OpenWrt
|
2007-10-05 17:56:15 +00:00
|
|
|
option encryption none
|
2009-10-02 15:18:44 +00:00
|
|
|
|
2007-10-05 17:56:15 +00:00
|
|
|
EOF
|
2009-11-28 18:00:59 +00:00
|
|
|
devidx=$(($devidx + 1))
|
2007-10-05 17:56:15 +00:00
|
|
|
done
|
|
|
|
}
|
2009-10-02 15:18:44 +00:00
|
|
|
|