summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorTravis Kemen <thepeople@openwrt.org>2007-11-28 20:34:00 +0000
committerTravis Kemen <thepeople@openwrt.org>2007-11-28 20:34:00 +0000
commitefb988f3f2caf3ccbd55549345b577c8d4d74f37 (patch)
treeecb985e13b24bf99dac2c499efa559fd59ce1546 /package
parentb6e523bc335a281a4f6910d3f83c0d75a3c3fb6d (diff)
downloadmaster-31e0f0ae-efb988f3f2caf3ccbd55549345b577c8d4d74f37.tar.gz
master-31e0f0ae-efb988f3f2caf3ccbd55549345b577c8d4d74f37.tar.bz2
master-31e0f0ae-efb988f3f2caf3ccbd55549345b577c8d4d74f37.zip
add options for rate 80211h compression bursting wmm and mac filtering From: Vasilis T. (aka Acinonyx)
SVN-Revision: 9624
Diffstat (limited to 'package')
-rwxr-xr-xpackage/madwifi/files/lib/wifi/madwifi.sh38
1 files changed, 38 insertions, 0 deletions
diff --git a/package/madwifi/files/lib/wifi/madwifi.sh b/package/madwifi/files/lib/wifi/madwifi.sh
index 5742c68e5a..27164cc281 100755
--- a/package/madwifi/files/lib/wifi/madwifi.sh
+++ b/package/madwifi/files/lib/wifi/madwifi.sh
@@ -177,12 +177,50 @@ enable_atheros() {
config_get txpwr "$vif" txpower
[ -n "$txpwr" ] && iwconfig "$ifname" txpower "${txpwr%%.*}"
+ config_get rate "$vif" rate
+ [ -n "$rate" ] && iwconfig "$ifname" rate "${rate%%.*}"
+
config_get frag "$vif" frag
[ -n "$frag" ] && iwconfig "$ifname" frag "${frag%%.*}"
config_get rts "$vif" rts
[ -n "$rts" ] && iwconfig "$ifname" rts "${rts%%.*}"
+ config_get_bool doth "$vif" 80211h
+ [ -n "$doth" ] && iwpriv "$ifname" doth "$doth"
+
+ config_get_bool comp "$vif" compression
+ [ -n "$comp" ] && iwpriv "$ifname" compression "$comp"
+
+ config_get_bool burst "$vif" bursting
+ [ -n "$burst" ] && iwpriv "$ifname" burst "$burst"
+
+ config_get_bool wmm "$vif" wmm
+ [ -n "$wmm" ] && iwpriv "$ifname" wmm "$wmm"
+
+ config_get maclist "$vif" maclist
+ [ -n "$maclist" ] && {
+ # flush MAC list
+ iwpriv "$ifname" maccmd 3
+ for mac in $maclist; do
+ iwpriv "$ifname" addmac "$mac"
+ done
+ }
+
+ config_get macpolicy "$vif" macpolicy
+ case "$macpolicy" in
+ allow)
+ iwpriv "$ifname" maccmd 1
+ ;;
+ deny)
+ iwpriv "$ifname" maccmd 2
+ ;;
+ *)
+ # default deny policy if mac list exists
+ [ -n "$maclist" ] && iwpriv "$ifname" maccmd 2
+ ;;
+ esac
+
ifconfig "$ifname" up
iwconfig "$ifname" channel "$channel" >/dev/null 2>/dev/null