fix madwifi mode selection problems

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6063 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2007-01-10 16:14:16 +00:00
parent ed4713861e
commit 2ab09f7882
1 changed files with 8 additions and 8 deletions

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