X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/833c6d36230d7123654e7bbd890f8547b4d98cd9..9e97fe261db0c03effd31865eea9f8759a4f2f16:/package/hostapd/files/hostapd.sh diff --git a/package/hostapd/files/hostapd.sh b/package/hostapd/files/hostapd.sh index 49b30cfd5..a2f2d6fd1 100644 --- a/package/hostapd/files/hostapd.sh +++ b/package/hostapd/files/hostapd.sh @@ -67,6 +67,7 @@ hostapd_setup_vif() { ;; *) wpa=0 + crypto= ;; esac config_get ifname "$vif" ifname @@ -74,18 +75,29 @@ hostapd_setup_vif() { config_get ssid "$vif" ssid config_get device "$vif" device config_get channel "$device" channel + config_get hwmode "$device" hwmode + case "$hwmode" in + 11a) hwmode=a;; + 11b) hwmode=b;; + 11g) hwmode=g;; + *) + hwmode= + [ "$channel" -gt 14 ] && hwmode=a + ;; + esac cat > /var/run/hostapd-$ifname.conf <