aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-12-10 18:43:47 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-12-10 18:43:47 +0000
commitb0b20ac0a3968489c1c5117f91161447f09d2e3a (patch)
tree475d4a5f858f70f5a991cebe34f2847aaa655530 /package
parent5d0e74a39399f148e9e5135e904898893ef1c0ee (diff)
downloadupstream-b0b20ac0a3968489c1c5117f91161447f09d2e3a.tar.gz
upstream-b0b20ac0a3968489c1c5117f91161447f09d2e3a.tar.bz2
upstream-b0b20ac0a3968489c1c5117f91161447f09d2e3a.zip
[package] mac80211: use iw for txpower control (#8416)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24441 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/mac80211/files/lib/wifi/mac80211.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh
index 46c8c2af4c..9ebc0be032 100644
--- a/package/mac80211/files/lib/wifi/mac80211.sh
+++ b/package/mac80211/files/lib/wifi/mac80211.sh
@@ -317,12 +317,11 @@ enable_mac80211() {
[ -n "$fixed" -a -n "$channel" ] && iw dev "$ifname" set channel "$channel"
fi
- # txpower is not yet implemented in iw
config_get vif_txpower "$vif" txpower
# use vif_txpower (from wifi-iface) to override txpower (from
# wifi-device) if the latter doesn't exist
txpower="${txpower:-$vif_txpower}"
- [ -z "$txpower" ] || iwconfig "$ifname" txpower "${txpower%%.*}"
+ [ -z "$txpower" ] || iw dev "$ifname" set txpower fixed "${txpower%%.*}00"
done
local start_hostapd=