1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-02 15:53:49 +03:00

mac80211: use iw instead of iwconfig to disable powersave

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29565 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2011-12-18 22:18:46 +00:00
parent d1dc804229
commit b156662f7a

View File

@ -363,7 +363,7 @@ enable_mac80211() {
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"
iw "$ifname" set power_save off
;;
esac