cpmac: patch to reimplement rx ring with EOQ markers to avoid reset storms (closes...
[openwrt.git] / package / broadcom-wl / files / etc / hotplug.d / net / 20-broadcom_wds
index 3ca4cd2..d60a316 100644 (file)
@@ -16,11 +16,23 @@ 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"
+                       
                        include /lib/network
                        scan_interfaces
 
                        setup_interface "$iface" "$network"
+                       
+                       config_get encryption "$cfg" encryption
+                       config_get key "$cfg" key
+                       config_get ssid "$cfg" ssid
+               
+                       [ "$encryption" != "none" ] && {
+                               sleep 1
+                               nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid" 
+                       }
                }
        }
 
This page took 0.0205 seconds and 4 git commands to generate.