projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
enable debugfs by default
[openwrt.git]
/
package
/
wpa_supplicant
/
files
/
wpa_supplicant.sh
diff --git
a/package/wpa_supplicant/files/wpa_supplicant.sh
b/package/wpa_supplicant/files/wpa_supplicant.sh
index
192c903
..
37ebef7
100644
(file)
--- a/
package/wpa_supplicant/files/wpa_supplicant.sh
+++ b/
package/wpa_supplicant/files/wpa_supplicant.sh
@@
-32,6
+32,7
@@
wpa_supplicant_setup_vif() {
proto='WPA2'
key_mgmt='WPA-EAP'
config_get ca_cert "$vif" ca_cert
proto='WPA2'
key_mgmt='WPA-EAP'
config_get ca_cert "$vif" ca_cert
+ ca_cert="ca_cert=\"$ca_cert\""
case "$eap_type" in
tls|TLS)
pairwise='pairwise=CCMP'
case "$eap_type" in
tls|TLS)
pairwise='pairwise=CCMP'
@@
-50,12
+51,12
@@
wpa_supplicant_setup_vif() {
password="password=\"$password\""
;;
esac
password="password=\"$password\""
;;
esac
+ eap_type="eap_type=$(echo $eap_type | tr 'a-z' 'A-Z')"
;;
esac
config_get ifname "$vif" ifname
config_get bridge "$vif" bridge
config_get ssid "$vif" ssid
;;
esac
config_get ifname "$vif" ifname
config_get bridge "$vif" bridge
config_get ssid "$vif" ssid
- eap_type=$(echo $eap_type | tr 'a-z' 'A-Z')
cat > /var/run/wpa_supplicant-$ifname.conf <<EOF
network={
scan_ssid=1
cat > /var/run/wpa_supplicant-$ifname.conf <<EOF
network={
scan_ssid=1
@@
-65,8
+66,8
@@
network={
$passphrase
$pairwise
$group
$passphrase
$pairwise
$group
-
eap=
$eap_type
- ca_cert="$ca_cert"
+ $eap_type
+ $ca_cert
$priv_key
$priv_key_pwd
$phase2
$priv_key
$priv_key_pwd
$phase2
This page took
0.022265 seconds
and
4
git commands to generate.