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
1159c3b
..
a2f2d6f
100644
(file)
--- a/
package/hostapd/files/hostapd.sh
+++ b/
package/hostapd/files/hostapd.sh
@@
-67,6
+67,7
@@
hostapd_setup_vif() {
;;
*)
wpa=0
;;
*)
wpa=0
+ crypto=
;;
esac
config_get ifname "$vif" ifname
;;
esac
config_get ifname "$vif" ifname
@@
-74,28
+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
agmode "$device" ag
mode
- case "$
ag
mode" in
- 11a)
ag
mode=a;;
- 11b)
ag
mode=b;;
- 11g)
ag
mode=g;;
+ config_get
hwmode "$device" hw
mode
+ case "$
hw
mode" in
+ 11a)
hw
mode=a;;
+ 11b)
hw
mode=b;;
+ 11g)
hw
mode=g;;
*)
*)
-
ag
mode=
- [ "$channel" -gt 14 ] &&
ag
mode=a
+
hw
mode=
+ [ "$channel" -gt 14 ] &&
hw
mode=a
;;
esac
cat > /var/run/hostapd-$ifname.conf <<EOF
;;
esac
cat > /var/run/hostapd-$ifname.conf <<EOF
+ctrl_interface=/var/run/hostapd-$ifname
driver=$driver
interface=$ifname
driver=$driver
interface=$ifname
-hw_mode=${
ag
mode:-g}
+hw_mode=${
hw
mode:-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.025687 seconds
and
4
git commands to generate.