X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6f9f98ff4fb4a59026d5f3c02221f4a5a4eb9aa2..512318e058ca1cdae2b5ce7c0f8f8f4b44679249:/package/hostapd/files/hostapd.sh diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index a6f5dba99..afd72fa1a 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" ;; @@ -67,6 +67,7 @@ hostapd_setup_vif() { ;; *) wpa=0 + crypto= ;; esac config_get ifname "$vif" ifname @@ -74,26 +75,35 @@ hostapd_setup_vif() { config_get ssid "$vif" ssid config_get device "$vif" device config_get channel "$device" channel - config_get agmode "$device" agmode - case "$agmode" in - 11a) agmode=a;; - 11b) agmode=b;; - 11g) agmode=g;; + config_get hwmode "$device" hwmode + config_get country "$device" country + case "$hwmode" in + 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 + ;; *) - agmode= - [ "$channel" -gt 14 ] && agmode=a + hwmode= + [ "$channel" -gt 14 ] && hwmode=a ;; esac cat > /var/run/hostapd-$ifname.conf <