diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-02-07 15:45:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-02-07 15:45:56 +0000 |
commit | a543eeb0aa5b775eced7ca5f85aaa20a2d243065 (patch) | |
tree | 2750549e1844339e05f48e7e75268fd9d82c1c81 | |
parent | bec8df834bbb3b7db88cc8dfe6b577b9af54d632 (diff) | |
download | upstream-a543eeb0aa5b775eced7ca5f85aaa20a2d243065.tar.gz upstream-a543eeb0aa5b775eced7ca5f85aaa20a2d243065.tar.bz2 upstream-a543eeb0aa5b775eced7ca5f85aaa20a2d243065.zip |
broadcom-wl: turn on wmm by default, disabling it by default makes no sense, and without it 802.11n does not work (fixes #10918)
SVN-Revision: 30362
-rw-r--r-- | package/broadcom-wl/files/lib/wifi/broadcom.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/broadcom-wl/files/lib/wifi/broadcom.sh b/package/broadcom-wl/files/lib/wifi/broadcom.sh index 0f639e1bc1..57e11e4b14 100644 --- a/package/broadcom-wl/files/lib/wifi/broadcom.sh +++ b/package/broadcom-wl/files/lib/wifi/broadcom.sh @@ -133,7 +133,7 @@ enable_broadcom() { config_get hwmode "$device" hwmode local vif_pre_up vif_post_up vif_do_up vif_txpower local doth=0 - local wmm=0 + local wmm=1 _c=0 nas="$(which nas)" @@ -330,7 +330,7 @@ infra $infra ${wet:+wet 1} 802.11d 0 802.11h ${doth:-0} -wme ${wmm:-0} +wme ${wmm:-1} rxant ${rxantenna:-3} txant ${txantenna:-3} fragthresh ${frag:-2346} |