diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-06-02 08:39:19 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-06-02 08:39:19 +0000 |
commit | 91467cec6fe874b0d6ee67d0814e07ce0b420c87 (patch) | |
tree | 24a74c2a6d825a8d1022b1b1a22241150e565066 /package/network/services/hostapd/files | |
parent | 5e5c82123336eb1517f375c40f4800bf4ae2538c (diff) | |
download | upstream-91467cec6fe874b0d6ee67d0814e07ce0b420c87.tar.gz upstream-91467cec6fe874b0d6ee67d0814e07ce0b420c87.tar.bz2 upstream-91467cec6fe874b0d6ee67d0814e07ce0b420c87.zip |
hostapd: add a new option to control HT coexistance separate from noscan
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45873
Diffstat (limited to 'package/network/services/hostapd/files')
-rw-r--r-- | package/network/services/hostapd/files/netifd.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/network/services/hostapd/files/netifd.sh b/package/network/services/hostapd/files/netifd.sh index 23d2e7e83e..3647b2907f 100644 --- a/package/network/services/hostapd/files/netifd.sh +++ b/package/network/services/hostapd/files/netifd.sh @@ -52,7 +52,7 @@ hostapd_common_add_device_config() { config_add_array supported_rates config_add_string country - config_add_boolean country_ie doth + config_add_boolean country_ie doth ht_coex config_add_string require_mode hostapd_add_log_config @@ -65,13 +65,15 @@ hostapd_prepare_device_config() { local base="${config%%.conf}" local base_cfg= - json_get_vars country country_ie beacon_int doth require_mode + json_get_vars country country_ie beacon_int doth require_mode ht_coex hostapd_set_log_options base_cfg set_default country_ie 1 set_default doth 1 + set_default ht_coex 0 + append base_cfg "ht_coex=$ht_coex" "$N" [ -n "$country" ] && { append base_cfg "country_code=$country" "$N" |