projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Port SPI-GPIO driver from 2.6.29-rc4
[openwrt.git]
/
package
/
hostapd
/
files
/
hostapd.sh
diff --git
a/package/hostapd/files/hostapd.sh
b/package/hostapd/files/hostapd.sh
index
147736b
..
a2f2d6f
100644
(file)
--- a/
package/hostapd/files/hostapd.sh
+++ b/
package/hostapd/files/hostapd.sh
@@
-39,7
+39,11
@@
hostapd_setup_vif() {
case "$enc" in
*psk*|*PSK*)
config_get psk "$vif" key
case "$enc" in
*psk*|*PSK*)
config_get psk "$vif" key
- append hostapd_cfg "wpa_passphrase=$psk" "$N"
+ if [ ${#psk} -eq 64 ]; then
+ append hostapd_cfg "wpa_psk=$psk" "$N"
+ else
+ append hostapd_cfg "wpa_passphrase=$psk" "$N"
+ fi
;;
*wpa*|*WPA*)
# required fields? formats?
;;
*wpa*|*WPA*)
# required fields? formats?
@@
-63,6
+67,7
@@
hostapd_setup_vif() {
;;
*)
wpa=0
;;
*)
wpa=0
+ crypto=
;;
esac
config_get ifname "$vif" ifname
;;
esac
config_get ifname "$vif" ifname
@@
-70,18
+75,29
@@
hostapd_setup_vif() {
config_get ssid "$vif" ssid
config_get device "$vif" device
config_get channel "$device" channel
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 <<EOF
cat > /var/run/hostapd-$ifname.conf <<EOF
+ctrl_interface=/var/run/hostapd-$ifname
driver=$driver
interface=$ifname
driver=$driver
interface=$ifname
-hw_mode=
g
+hw_mode=
${hwmode:-g}
channel=$channel
${bridge:+bridge=$bridge}
ssid=$ssid
debug=0
wpa=$wpa
channel=$channel
${bridge:+bridge=$bridge}
ssid=$ssid
debug=0
wpa=$wpa
-wpa_pairwise=$crypto
+${crypto:+wpa_pairwise=$crypto}
$hostapd_cfg
EOF
$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.030052 seconds
and
4
git commands to generate.