add options for options xr, ar, turbo, mcast_rate Signed-off-by: Lorenz Schori <lorenz.schori@gmx.ch>
SVN-Revision: 10217
This commit is contained in:
parent
e743dd5c81
commit
f548e54b8d
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue