diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-02-11 18:59:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-02-11 18:59:10 +0000 |
commit | 1810b80ec08fe0e98bb6776957f779ea440001bf (patch) | |
tree | c5b2ffe50df87a62be4a930333712655b712d8cf /package/mac80211 | |
parent | 2e7a4b088d83e64e5ae8fc54cdc22d24493cc249 (diff) | |
download | upstream-1810b80ec08fe0e98bb6776957f779ea440001bf.tar.gz upstream-1810b80ec08fe0e98bb6776957f779ea440001bf.tar.bz2 upstream-1810b80ec08fe0e98bb6776957f779ea440001bf.zip |
mac80211/hostapd: short_preamble is a per-vif option and should be enabled by default
SVN-Revision: 35565
Diffstat (limited to 'package/mac80211')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index a2399357c1..1ad3eb5086 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -14,7 +14,6 @@ mac80211_hostapd_setup_base() { config_get beacon_int "$device" beacon_int config_get basic_rate_list "$device" basic_rate config_get_bool noscan "$device" noscan - config_get_bool short_preamble "$device" short_preamble "0" hostapd_set_log_options base_cfg "$device" @@ -58,8 +57,6 @@ mac80211_hostapd_setup_base() { done } - append base_cfg "preamble=$short_preamble" "$N" - cat >> "$cfgfile" <<EOF ctrl_interface=/var/run/hostapd-$phy driver=nl80211 |