diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-03-01 18:02:49 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-03-01 18:02:49 +0000 |
commit | 782ca84485191df1839c66bafab732e269b6d217 (patch) | |
tree | 9e92a05e7eb1a5822f4e21cdb3dfe78824656a69 /package/hostapd | |
parent | 48d81f60743995bdc67ade4b4520fffdbae0c689 (diff) | |
download | upstream-782ca84485191df1839c66bafab732e269b6d217.tar.gz upstream-782ca84485191df1839c66bafab732e269b6d217.tar.bz2 upstream-782ca84485191df1839c66bafab732e269b6d217.zip |
hostapd: add 11n mode and ht_capab option for hostapd
SVN-Revision: 14713
Diffstat (limited to 'package/hostapd')
-rw-r--r-- | package/hostapd/files/hostapd.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index 4c57d11dd7..afd72fa1ad 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -22,7 +22,7 @@ hostapd_setup_vif() { wpa=3 crypto="CCMP TKIP" ;; - *) + *) wpa=1 crypto="TKIP" ;; @@ -81,6 +81,11 @@ hostapd_setup_vif() { 11a) hwmode=a;; 11b) hwmode=b;; 11g) hwmode=g;; + 11n) + hwmode=g + append hostapd_cfg "ieee80211n=1" "$N" + config_get ht_capab "$device" ht_capab + ;; *) hwmode= [ "$channel" -gt 14 ] && hwmode=a @@ -98,6 +103,7 @@ debug=0 wpa=$wpa ${crypto:+wpa_pairwise=$crypto} ${country:+country_code=$country} +${ht_capab:+ht_capab=$ht_capab} $hostapd_cfg EOF hostapd -P /var/run/wifi-$ifname.pid -B /var/run/hostapd-$ifname.conf |