fix madwifi mode selection problems

SVN-Revision: 6063
This commit is contained in:
Felix Fietkau 2007-01-10 16:14:16 +00:00
parent a80df62566
commit e4390854df

View File

@ -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"
} }