mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-22 10:01:03 +00:00
fix madwifi mode selection problems
SVN-Revision: 6063
This commit is contained in:
parent
a80df62566
commit
e4390854df
@ -92,17 +92,17 @@ enable_atheros() {
|
|||||||
|
|
||||||
[ "$first" = 1 ] && {
|
[ "$first" = 1 ] && {
|
||||||
# only need to change freq band and channel on the first vif
|
# only need to change freq band and channel on the first vif
|
||||||
config_get "$device" mode
|
config_get agmode "$device" mode
|
||||||
pureg=0
|
pureg=0
|
||||||
case "$mode" in
|
case "$agmode" in
|
||||||
*b) mode=11b;;
|
*b) agmode=11b;;
|
||||||
*bg) mode=11g;;
|
*bg) agmode=11g;;
|
||||||
*g) mode=11g; pureg=1;;
|
*g) agmode=11g; pureg=1;;
|
||||||
*a) mode=11a;;
|
*a) agmode=11a;;
|
||||||
*) mode=11g;;
|
*) agmode=11g;;
|
||||||
esac
|
esac
|
||||||
iwconfig "$ifname" channel 0
|
iwconfig "$ifname" channel 0
|
||||||
iwpriv "$ifname" mode "$mode"
|
iwpriv "$ifname" agmode "$agmode"
|
||||||
iwpriv "$ifname" pureg "$pureg"
|
iwpriv "$ifname" pureg "$pureg"
|
||||||
iwconfig "$ifname" channel "$channel"
|
iwconfig "$ifname" channel "$channel"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user