summaryrefslogtreecommitdiff
path: root/package/network/services/hostapd/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-05-03 21:14:48 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-05-03 21:14:48 +0000
commit26044703a4c212d89aec46c50f44d085c0b97c4a (patch)
treeecae3a8b46fed98885897d4a5556be907664f691 /package/network/services/hostapd/files
parent7bf399a87a9e9afad7292767ea9027eff16055b6 (diff)
downloadmtk-20170518-26044703a4c212d89aec46c50f44d085c0b97c4a.zip
mtk-20170518-26044703a4c212d89aec46c50f44d085c0b97c4a.tar.gz
mtk-20170518-26044703a4c212d89aec46c50f44d085c0b97c4a.tar.bz2
hostapd: add an option for 802.11h (enabled by default)
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40690
Diffstat (limited to 'package/network/services/hostapd/files')
-rw-r--r--package/network/services/hostapd/files/netifd.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/package/network/services/hostapd/files/netifd.sh b/package/network/services/hostapd/files/netifd.sh
index 1372b5a..ab31361 100644
--- a/package/network/services/hostapd/files/netifd.sh
+++ b/package/network/services/hostapd/files/netifd.sh
@@ -51,7 +51,7 @@ hostapd_common_add_device_config() {
config_add_array basic_rate
config_add_string country
- config_add_boolean country_ie
+ config_add_boolean country_ie doth
hostapd_add_log_config
}
@@ -63,14 +63,18 @@ hostapd_prepare_device_config() {
local base="${config%%.conf}"
local base_cfg=
- json_get_vars country country_ie beacon_int
+ json_get_vars country country_ie beacon_int doth
hostapd_set_log_options base_cfg
set_default country_ie 1
+ set_default doth 1
+
[ -n "$country" ] && {
append base_cfg "country_code=$country" "$N"
+
[ "$country_ie" -gt 0 ] && append base_cfg "ieee80211d=1" "$N"
+ [ "$hwmode" = "a" -a "$doth" -gt 0 ] && append base_cfg "ieee80211h=1" "$N"
}
[ -n "$hwmode" ] && append base_cfg "hw_mode=$hwmode" "$N"