#
-# Copyright (C) 2008 OpenWrt.org
+# Copyright (C) 2008-2009 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
PKG_NAME:=wpa_supplicant
PKG_VERSION:=0.6.3
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_MD5SUM:=b51b2975f21006f85f7297f3fb1acde1
PKG_SOURCE_URL:=http://hostap.epitest.fi/releases
proto='WPA2'
key_mgmt='WPA-EAP'
config_get ca_cert "$vif" ca_cert
- ca_cert="ca_cert=\"$ca_cert\""
+ ca_cert=${ca_cert:+"ca_cert=\"$ca_cert\""}
case "$eap_type" in
tls|TLS)
pairwise='pairwise=CCMP'
password="password=\"$password\""
;;
esac
- eap_type="eap_type=$(echo $eap_type | tr 'a-z' 'A-Z')"
+ eap_type="eap=$(echo $eap_type | tr 'a-z' 'A-Z')"
;;
esac
config_get ifname "$vif" ifname
config_get bridge "$vif" bridge
config_get ssid "$vif" ssid
+ config_get bssid "$vif" bssid
+ bssid=${bssid:+"bssid=$bssid"}
cat > /var/run/wpa_supplicant-$ifname.conf <<EOF
ctrl_interface=/var/run/wpa_supplicant-$ifname
network={
scan_ssid=1
ssid="$ssid"
+ $bssid
key_mgmt=$key_mgmt
proto=$proto
$passphrase