1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 00:08:53 +03:00

mac80211: fix client mode

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19915 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2010-02-28 19:02:05 +00:00
parent 41d5e0ca05
commit 8b0591cf4b

View File

@ -329,20 +329,20 @@ enable_mac80211() {
start_hostapd=1
done
[ -n "$start_hostapd" ] || return 0
[ -n "$start_hostapd" ] && {
hostapd -P /var/run/wifi-$phy.pid -B /var/run/hostapd-$phy.conf || {
echo "Failed to start hostapd for $phy"
return
}
sleep 2
hostapd -P /var/run/wifi-$phy.pid -B /var/run/hostapd-$phy.conf || {
echo "Failed to start hostapd for $phy"
return
for vif in $vifs; do
config_get mode "$vif" mode
config_get ifname "$vif" ifname
[ "$mode" = "ap" ] || continue
mac80211_start_vif "$vif" "$ifname"
done
}
sleep 2
for vif in $vifs; do
config_get mode "$vif" mode
config_get ifname "$vif" ifname
[ "$mode" = "ap" ] || continue
mac80211_start_vif "$vif" "$ifname"
done
for vif in $vifs; do
config_get mode "$vif" mode