more wpa+wds patches
[openwrt/svn-archive/archive.git] / package / broadcom-wl / files / etc / hotplug.d / net / 20-broadcom_wds
index 0f28eedafccfad27144de3073373b85785040ad4..788d69c549026e7e1844b2d9bab693ba31c397c5 100644 (file)
@@ -16,6 +16,7 @@ setup_broadcom_wds() {
                [ -z "$network" ] && return
                
                config_get addr "$CONFIG_SECTION" bssid
+               addr=$(echo "$addr" | tr 'A-F' 'a-f')
                [ "$addr" = "$remote" ] && {
                        local cfg="$CONFIG_SECTION"
                        
@@ -28,8 +29,11 @@ setup_broadcom_wds() {
                        config_get key "$cfg" key
                        config_get ssid "$cfg" ssid
                
-                       [ "$encryption" == "psk" ] && \
-                       nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid" 
+                       [ "$encryption" != "none" ] && {
+                               sleep 1
+                               nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid" 
+                       }
+                       
                }
        }