1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

fix b/g mode selection for madwifi, update documentation

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5973 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2007-01-04 01:29:01 +00:00
parent 33c98e51b9
commit 8fb079219b
2 changed files with 51 additions and 7 deletions

View File

@@ -73,6 +73,7 @@ enable_atheros() {
config_get vifs "$device" vifs
disable_atheros "$device"
local first=1
for vif in $vifs; do
nosbeacon=
config_get ifname "$vif" ifname
@@ -89,8 +90,22 @@ enable_atheros() {
}
config_set "$vif" ifname "$ifname"
config_get "$device" mode
iwpriv "$ifname" mode "${mode:-11g}"
[ "$first" = 1 ] && {
# only need to change freq band and channel on the first vif
config_get "$device" mode
pureg=0
case "$mode" in
*b) mode=11b;;
*bg) mode=11g;;
*g) mode=11g; pureg=1;;
*a) mode=11a;;
*) mode=11g;;
esac
iwconfig "$ifname" channel 0
iwpriv "$ifname" mode "$mode"
iwpriv "$ifname" pureg "$pureg"
iwconfig "$ifname" channel "$channel"
}
config_get wds "$vif" wds
case "$wds" in
@@ -120,7 +135,6 @@ enable_atheros() {
config_get ssid "$vif" ssid
;;
esac
iwconfig "$ifname" channel "$channel"
ifconfig "$ifname" up
local net_cfg bridge
@@ -145,6 +159,7 @@ enable_atheros() {
# FIXME: implement wpa_supplicant calls here
;;
esac
first=0
done
}