mac80211: add uci support for configuring antenna gain

SVN-Revision: 33587
This commit is contained in:
Felix Fietkau 2012-09-28 18:29:22 +00:00
parent de6a5279d1
commit a31bdfbea0
2 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=mac80211
PKG_VERSION:=2012-09-07
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources
PKG_MD5SUM:=59e0a114ee4b755a6e47cb6cd0f32ebc

View File

@ -295,6 +295,7 @@ enable_mac80211() {
config_get distance "$device" distance
config_get txantenna "$device" txantenna all
config_get rxantenna "$device" rxantenna all
config_get antenna_gain "$device" antenna_gain 0
config_get frag "$device" frag
config_get rts "$device" rts
find_mac80211_phy "$device" || return 0
@ -321,6 +322,7 @@ enable_mac80211() {
}
iw phy "$phy" set antenna $txantenna $rxantenna >/dev/null 2>&1
iw phy "$phy" set antenna_gain $antenna_gain
[ -n "$distance" ] && iw phy "$phy" set distance "$distance"
[ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}"