aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/files
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
commit4dcba4234223d83e60640e62a0c959aea2eb657c (patch)
tree49cf30666a4355fea3a1c33ab3deb1244d142198 /package/mac80211/files
parentb680f088ba6f7e5982143db351d1f817bffbf86d (diff)
downloadupstream-4dcba4234223d83e60640e62a0c959aea2eb657c.tar.gz
upstream-4dcba4234223d83e60640e62a0c959aea2eb657c.tar.bz2
upstream-4dcba4234223d83e60640e62a0c959aea2eb657c.zip
mac80211: use iw for txpower control (#8416)
SVN-Revision: 24441
Diffstat (limited to 'package/mac80211/files')
-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=