diff options
| author | agb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-12-31 19:09:26 +0000 | 
|---|---|---|
| committer | agb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-12-31 19:09:26 +0000 | 
| commit | afb87b33ca6a84890e9080260df97b14c9104667 (patch) | |
| tree | f1fe6bb19c288839deb67ba682febeab240304e0 /package/madwifi/files | |
| parent | e8530f33a96015394b3e846f3ac44a900e7e9012 (diff) | |
[package] hostapd,madwifi: rename agmode option to hwmode. 11a and 11g aren't the only allowed values
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13790 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/madwifi/files')
| -rwxr-xr-x | package/madwifi/files/lib/wifi/madwifi.sh | 26 | 
1 files changed, 13 insertions, 13 deletions
diff --git a/package/madwifi/files/lib/wifi/madwifi.sh b/package/madwifi/files/lib/wifi/madwifi.sh index 638640a96..db7f05794 100755 --- a/package/madwifi/files/lib/wifi/madwifi.sh +++ b/package/madwifi/files/lib/wifi/madwifi.sh @@ -95,22 +95,22 @@ enable_atheros() {  		config_set "$vif" ifname "$ifname"  		# only need to change freq band and channel on the first vif -		config_get agmode "$device" agmode -		[ -z "$agmode" ] && config_get agmode "$device" mode +		config_get hwmode "$device" hwmode +		[ -z "$hwmode" ] && config_get hwmode "$device" mode  		pureg=0 -		case "$agmode" in -			*b) agmode=11b;; -			*bg) agmode=11g;; -			*g) agmode=11g; pureg=1;; -			*gdt) agmode=11gdt;; -			*a) agmode=11a;; -			*adt) agmode=11adt;; -			*ast) agmode=11ast;; -			*fh) agmode=fh;; -			*) agmode=auto;; +		case "$hwmode" in +			*b) hwmode=11b;; +			*bg) hwmode=11g;; +			*g) hwmode=11g; pureg=1;; +			*gdt) hwmode=11gdt;; +			*a) hwmode=11a;; +			*adt) hwmode=11adt;; +			*ast) hwmode=11ast;; +			*fh) hwmode=fh;; +			*) hwmode=auto;;  		esac -		iwpriv "$ifname" mode "$agmode" +		iwpriv "$ifname" mode "$hwmode"  		iwpriv "$ifname" pureg "$pureg"  		[ "$first" = 1 ] && {  | 
