summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-08-28 12:13:36 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-08-28 12:13:36 +0000
commita2e70fed224487c34117aaa39cf8ee411099a840 (patch)
tree4c50b04ce3f4e010a0dc51a05223373df34ecd46 /package
parent5f30b3de446b809e5329f2e4dc5cd6a7ca0d3135 (diff)
downloadmaster-31e0f0ae-a2e70fed224487c34117aaa39cf8ee411099a840.tar.gz
master-31e0f0ae-a2e70fed224487c34117aaa39cf8ee411099a840.tar.bz2
master-31e0f0ae-a2e70fed224487c34117aaa39cf8ee411099a840.zip
madwifi: only start hostapd when necessary
SVN-Revision: 12420
Diffstat (limited to 'package')
-rwxr-xr-xpackage/madwifi/files/lib/wifi/madwifi.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/madwifi/files/lib/wifi/madwifi.sh b/package/madwifi/files/lib/wifi/madwifi.sh
index cc340977b2..0b24886903 100755
--- a/package/madwifi/files/lib/wifi/madwifi.sh
+++ b/package/madwifi/files/lib/wifi/madwifi.sh
@@ -78,6 +78,7 @@ enable_atheros() {
local first=1
for vif in $vifs; do
+ local start_hostapd
nosbeacon=
config_get ifname "$vif" ifname
config_get enc "$vif" encryption
@@ -137,7 +138,6 @@ enable_atheros() {
[ -n "$wdssep" ] && iwpriv "$ifname" wdssep "$wdssep"
}
- wpa=
case "$enc" in
WEP|wep)
for idx in 1 2 3 4; do
@@ -152,6 +152,7 @@ enable_atheros() {
esac
;;
PSK|psk|PSK2|psk2)
+ start_hostapd=1
config_get key "$vif" key
;;
esac
@@ -261,7 +262,7 @@ enable_atheros() {
config_get_bool isolate "$vif" isolate 0
iwpriv "$ifname" ap_bridge "$((isolate^1))"
- if eval "type hostapd_setup_vif" 2>/dev/null >/dev/null; then
+ if [ -n "$start_hostapd" ] && eval "type hostapd_setup_vif" 2>/dev/null >/dev/null; then
hostapd_setup_vif "$vif" madwifi || {
echo "enable_atheros($device): Failed to set up hostapd for interface $ifname" >&2
# make sure this wifi interface won't accidentally stay open without encryption