more wpa+wds patches
authorMike Baker <mbm@openwrt.org>
Sun, 8 Jul 2007 12:51:30 +0000 (12:51 +0000)
committerMike Baker <mbm@openwrt.org>
Sun, 8 Jul 2007 12:51:30 +0000 (12:51 +0000)
SVN-Revision: 7888

package/base-files/files/lib/network/config.sh
package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
package/broadcom-wl/files/lib/wifi/broadcom.sh

index c08fd69bc8f615dc2040919a6fb6816eb86ee21f..c384b3e142124238a5b60295c4418fb2aab396d2 100755 (executable)
@@ -91,7 +91,6 @@ prepare_interface() {
        case "$iftype" in
                bridge)
                        [ -x /usr/sbin/brctl ] && {
-                               ifconfig "$iface" up 2>/dev/null >/dev/null
                                ifconfig "br-$config" 2>/dev/null >/dev/null && {
                                        $DEBUG brctl addif "br-$config" "$iface"
                                        # Bridge existed already. No further processing necesary
@@ -104,6 +103,7 @@ prepare_interface() {
                                        # result in another setup_interface() call, so we simply stop processing
                                        # the current event at this point.
                                }
+                               ifconfig "$iface" up 2>/dev/null >/dev/null
                                return 1
                        }
                ;;
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" 
+                       }
+                       
                }
        }
 
index 8b021258223d3e99adda10bddd5ee48c143266b1..abfbfb97858f4a4f70a99bf250476292e0488472 100644 (file)
@@ -191,7 +191,7 @@ enable_broadcom() {
                append vif_post_up "enabled 1" "$N"
                
                config_get ifname "$vif" ifname
-               append if_up "ifconfig $ifname up" ";$N"
+               #append if_up "ifconfig $ifname up" ";$N"
                local net_cfg bridge
                net_cfg="$(find_net_config "$vif")"
                [ -z "$net_cfg" ] || {