1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 14:42:01 +03:00

fix madwifi mode selection problems

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6063 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-01-10 16:14:16 +00:00
parent afb08d2fac
commit 6b7d7d8a9e

View File

@ -92,17 +92,17 @@ enable_atheros() {
[ "$first" = 1 ] && {
# only need to change freq band and channel on the first vif
config_get "$device" mode
config_get agmode "$device" mode
pureg=0
case "$mode" in
*b) mode=11b;;
*bg) mode=11g;;
*g) mode=11g; pureg=1;;
*a) mode=11a;;
*) mode=11g;;
case "$agmode" in
*b) agmode=11b;;
*bg) agmode=11g;;
*g) agmode=11g; pureg=1;;
*a) agmode=11a;;
*) agmode=11g;;
esac
iwconfig "$ifname" channel 0
iwpriv "$ifname" mode "$mode"
iwpriv "$ifname" agmode "$agmode"
iwpriv "$ifname" pureg "$pureg"
iwconfig "$ifname" channel "$channel"
}