mac80211: disable powersave on the sta by default (for performance reasons)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18379 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2009-11-11 16:59:36 +00:00
parent 7df88d1517
commit 87daff29ba
1 changed files with 3 additions and 0 deletions

View File

@ -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