diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-10-23 23:39:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-10-23 23:39:54 +0000 |
commit | 35cdc5d722883cac8b524ea803ee7eedca844087 (patch) | |
tree | 12d1b85761b964715b0ecb3ff87ca595f4ef8ddb /package/hostapd/files | |
parent | 0fbff7de83cfa67aa5c7b63e9d3964983655453c (diff) | |
download | upstream-35cdc5d722883cac8b524ea803ee7eedca844087.tar.gz upstream-35cdc5d722883cac8b524ea803ee7eedca844087.tar.bz2 upstream-35cdc5d722883cac8b524ea803ee7eedca844087.zip |
hostapd/mac80211: implement support for AP+STA
SVN-Revision: 23602
Diffstat (limited to 'package/hostapd/files')
-rw-r--r-- | package/hostapd/files/wpa_supplicant.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/hostapd/files/wpa_supplicant.sh b/package/hostapd/files/wpa_supplicant.sh index 28d5d20565..515fa6c0da 100644 --- a/package/hostapd/files/wpa_supplicant.sh +++ b/package/hostapd/files/wpa_supplicant.sh @@ -2,6 +2,7 @@ wpa_supplicant_setup_vif() { local vif="$1" local driver="$2" local key="$key" + local options="$3" # wpa_supplicant should use wext for mac80211 cards [ "$driver" = "mac80211" ] && driver='wext' @@ -133,5 +134,5 @@ network={ } EOF [ -z "$proto" -a "$key_mgmt" != "NONE" ] || \ - wpa_supplicant ${bridge:+ -b $bridge} -B -P "/var/run/wifi-${ifname}.pid" -D ${driver:-wext} -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf + wpa_supplicant ${bridge:+ -b $bridge} -B -P "/var/run/wifi-${ifname}.pid" -D ${driver:-wext} -i "$ifname" -c /var/run/wpa_supplicant-$ifname.conf $options } |