1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 02:04:10 +03:00

don't try to set up wpa if hostapd is not installed

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7005 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-04-19 11:42:39 +00:00
parent 7a1a2ed509
commit f806cc2b9f

View File

@ -194,13 +194,15 @@ enable_atheros() {
iwconfig "$ifname" essid "$ssid" iwconfig "$ifname" essid "$ssid"
case "$mode" in case "$mode" in
ap) ap)
hostapd_setup_vif "$vif" madwifi || { if eval "type hostapd_setup_vif" 2>/dev/null >/dev/null; then
echo "enable_atheros($device): Failed to set up wpa for interface $ifname" >&2 hostapd_setup_vif "$vif" madwifi || {
# make sure this wifi interface won't accidentally stay open without encryption echo "enable_atheros($device): Failed to set up wpa for interface $ifname" >&2
ifconfig "$ifname" down # make sure this wifi interface won't accidentally stay open without encryption
wlanconfig "$ifname" destroy ifconfig "$ifname" down
continue wlanconfig "$ifname" destroy
} continue
}
fi
;; ;;
wds|sta) wds|sta)
case "$enc" in case "$enc" in