add options for options xr, ar, turbo, mcast_rate Signed-off-by: Lorenz Schori <loren...
authorthepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 17 Jan 2008 01:23:38 +0000 (01:23 +0000)
committerthepeople <thepeople@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 17 Jan 2008 01:23:38 +0000 (01:23 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10217 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/madwifi/files/lib/wifi/madwifi.sh

index 27164cc..ca933a1 100755 (executable)
@@ -180,6 +180,9 @@ enable_atheros() {
                config_get rate "$vif" rate
                [ -n "$rate" ] && iwconfig "$ifname" rate "${rate%%.*}"
 
+               config_get mcast_rate "$vif" mcast_rate
+               [ -n "$mcast_rate" ] && iwpriv "$ifname" mcast_rate "${mcast_rate%%.*}"
+
                config_get frag "$vif" frag
                [ -n "$frag" ] && iwconfig "$ifname" frag "${frag%%.*}"
 
@@ -198,6 +201,15 @@ enable_atheros() {
                config_get_bool wmm "$vif" wmm
                [ -n "$wmm" ] && iwpriv "$ifname" wmm "$wmm"
 
+               config_get_bool xr "$vif" xr
+               [ -n "$xr" ] && iwpriv "$ifname" xr "$xr"
+
+               config_get_bool ar "$vif" ar
+               [ -n "$ar" ] && iwpriv "$ifname" ar "$ar"
+
+               config_get_bool turbo "$vif" turbo
+               [ -n "$turbo" ] && iwpriv "$ifname" turbo "$turbo"
+
                config_get maclist "$vif" maclist
                [ -n "$maclist" ] && {
                        # flush MAC list
This page took 0.026581 seconds and 4 git commands to generate.