From 6ef6628ddb20881215bca6ea68b3439eed7ad410 Mon Sep 17 00:00:00 2001 From: jow Date: Thu, 22 Jul 2010 16:02:30 +0000 Subject: [PATCH] [backfire] merge r22355 git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@22356 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/mac80211/files/lib/wifi/mac80211.sh | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index c871cbe73..4390b657f 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -206,6 +206,8 @@ enable_mac80211() { config_get txpower "$device" txpower config_get country "$device" country config_get distance "$device" distance + config_get frag "$device" frag + config_get rts "$device" rts find_mac80211_phy "$device" || return 0 config_get phy "$device" phy local i=0 @@ -219,6 +221,8 @@ enable_mac80211() { } [ -n "$distance" ] && iw phy "$phy" set distance "$distance" + [ -n "$frag" ] && iw phy "$phy" set frag "${frag%%.*}" + [ -n "$rts" ] && iw phy "$phy" set rts "${rts%%.*}" export channel fixed # convert channel to frequency @@ -310,16 +314,6 @@ enable_mac80211() { # wifi-device) if the latter doesn't exist txpower="${txpower:-$vif_txpower}" [ -z "$txpower" ] || iwconfig "$ifname" txpower "${txpower%%.*}" - - config_get frag "$vif" frag - if [ -n "$frag" ]; then - iw phy "$phy" set frag "${frag%%.*}" - fi - - config_get rts "$vif" rts - if [ -n "$rts" ]; then - iw phy "$phy" set rts "${rts%%.*}" - fi done local start_hostapd=