diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-03-27 13:21:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-03-27 13:21:46 +0000 |
commit | 2143633bd2c44eadfe271f0e6c7355e6e10bafed (patch) | |
tree | f84fb8a137302669964cabd70a8ff76ff087453c /package | |
parent | 0c21e6a7b8af3ecfd2fbe39e8a9dc9986fc79173 (diff) | |
download | upstream-2143633bd2c44eadfe271f0e6c7355e6e10bafed.tar.gz upstream-2143633bd2c44eadfe271f0e6c7355e6e10bafed.tar.bz2 upstream-2143633bd2c44eadfe271f0e6c7355e6e10bafed.zip |
mac80211: modify mac80211.sh to in order to support IBSS-RSN
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
SVN-Revision: 31083
Diffstat (limited to 'package')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index ff5470b5eb..e946a685ac 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -447,6 +447,17 @@ enable_mac80211() { config_get mcast_rate "$vif" mcast_rate local keyspec="" + [ "$encryption" == "psk" -o "$encryption" == "psk2" ] && { + if eval "type wpa_supplicant_setup_vif" 2>/dev/null >/dev/null; then + wpa_supplicant_setup_vif "$vif" nl80211 "" $freq || { + echo "enable_mac80211($device): Failed to set up wpa_supplicant for interface $ifname" >&2 + # make sure this wifi interface won't accidentally stay open without encryption + ifconfig "$ifname" down + continue + } + fi + } + [ "$encryption" == "wep" ] && { case "$key" in [1234]) |