aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-11-11 16:59:36 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-11-11 16:59:36 +0000
commita195852e7f0b0808d3b8447fd07483009e7bbe3c (patch)
tree012ab4f2beaa222215d140268be150bbda3ad920 /package
parentf61d14f781a534fc613ed4f922c61e042c413fb8 (diff)
downloadupstream-a195852e7f0b0808d3b8447fd07483009e7bbe3c.tar.gz
upstream-a195852e7f0b0808d3b8447fd07483009e7bbe3c.tar.bz2
upstream-a195852e7f0b0808d3b8447fd07483009e7bbe3c.zip
mac80211: disable powersave on the sta by default (for performance reasons)
SVN-Revision: 18379
Diffstat (limited to 'package')
-rw-r--r--package/mac80211/files/lib/wifi/mac80211.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh
index 027749e578..00a81393d6 100644
--- a/package/mac80211/files/lib/wifi/mac80211.sh
+++ b/package/mac80211/files/lib/wifi/mac80211.sh
@@ -127,6 +127,9 @@ enable_mac80211() {
local wdsflag
[ "$wds" -gt 0 ] && wdsflag="wds on"
iw phy "$phy" interface add "$ifname" type managed $wdsflag
+ config_get_bool powersave "$vif" powersave 0
+ [ "$powersave" -gt 0 ] && powersave="on" || powersave="off"
+ iwconfig "$ifname" power "$powersave"
;;
esac