1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-09-28 15:11:27 +02:00

mac80211: use iw for txpower control (#8416)

SVN-Revision: 24441
This commit is contained in:
Jo-Philipp Wich 2010-12-10 18:43:47 +00:00
parent b680f088ba
commit 4dcba42342

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