Set default compiler for ps3
[openwrt.git] / package / hostapd / files / hostapd.sh
index 49b30cf..afd72fa 100644 (file)
@@ -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,18 +75,37 @@ hostapd_setup_vif() {
        config_get ssid "$vif" ssid
        config_get device "$vif" device
        config_get channel "$device" channel
+       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
+               ;;
+               *)
+                       hwmode=
+                       [ "$channel" -gt 14 ] && hwmode=a
+               ;;
+       esac
        cat > /var/run/hostapd-$ifname.conf <<EOF
+ctrl_interface=/var/run/hostapd-$ifname
 driver=$driver
 interface=$ifname
-hw_mode=g
+hw_mode=${hwmode:-g}
 channel=$channel
 ${bridge:+bridge=$bridge}
 ssid=$ssid
 debug=0
 wpa=$wpa
-wpa_pairwise=$crypto
+${crypto:+wpa_pairwise=$crypto}
+${country:+country_code=$country}
+${ht_capab:+ht_capab=$ht_capab}
 $hostapd_cfg
 EOF
-       hostapd -B /var/run/hostapd-$ifname.conf
+       hostapd -P /var/run/wifi-$ifname.pid -B /var/run/hostapd-$ifname.conf
 }
 
This page took 0.023746 seconds and 4 git commands to generate.