Browse Source

mac80211: broadcast the country IE by default if the country code is configured (#9308)

SVN-Revision: 26765
Felix Fietkau 14 years ago
parent
commit
be3deb5b14
1 changed files with 5 additions and 0 deletions
  1. 5 0
      package/mac80211/files/lib/wifi/mac80211.sh

+ 5 - 0
package/mac80211/files/lib/wifi/mac80211.sh

@@ -36,6 +36,11 @@ mac80211_hostapd_setup_base() {
 		}
 	}
 
+	local country_ie=0
+	[ -n "$country" ] && country_ie=1
+	config_get_bool country_ie "$device" country_ie "$country_ie"
+	[ "$country_ie" -gt 0 ] && append base_cfg "ieee80211d=1" "$N"
+
 	config_get macfilter "$vif" macfilter
 	case "$macfilter" in
 		allow)