1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 17:55:55 +02:00

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

git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@26766 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2011-04-26 19:34:29 +00:00
parent 61cfb8be78
commit 2403e5914f

View File

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