diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-08 17:34:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-08 17:34:56 +0000 |
commit | b59aeb6c7ffa45c2e23b7236c26c590eb2299f99 (patch) | |
tree | b409139aad9e78a1388dd8c2922a8c13bb86e9a6 | |
parent | 7caf283e60b4237f303237608995b92357d7ea7a (diff) | |
download | upstream-b59aeb6c7ffa45c2e23b7236c26c590eb2299f99.tar.gz upstream-b59aeb6c7ffa45c2e23b7236c26c590eb2299f99.tar.bz2 upstream-b59aeb6c7ffa45c2e23b7236c26c590eb2299f99.zip |
mac80211: set the country code early to allow crda to settle
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28387 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index 72549092bf..1ae0c20838 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -302,6 +302,13 @@ enable_mac80211() { fixed="" local hostapd_ctrl="" + [ -n "$country" ] && { + iw reg get | grep -q "^country $country:" || { + iw reg set "$country" + sleep 1 + } + } + config_get ath9k_chanbw "$device" ath9k_chanbw [ -n "$ath9k_chanbw" -a -d /sys/kernel/debug/ieee80211/$phy/ath9k ] && echo "$ath9k_chanbw" > /sys/kernel/debug/ieee80211/$phy/ath9k/chanbw |