summaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl/files
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-08 12:51:30 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-07-08 12:51:30 +0000
commitba2d06509078a9dbbc09a08e181239f47ed679fe (patch)
tree9a073a639ffaf9fe0232faedc715a95c05657737 /package/broadcom-wl/files
parent07790ddaf99fbccbf417ca931d74cee1241030ce (diff)
more wpa+wds patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7888 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-wl/files')
-rw-r--r--package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds8
-rw-r--r--package/broadcom-wl/files/lib/wifi/broadcom.sh2
2 files changed, 7 insertions, 3 deletions
diff --git a/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds b/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
index 0f28eedaf..788d69c54 100644
--- a/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
+++ b/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
@@ -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"
+ }
+
}
}
diff --git a/package/broadcom-wl/files/lib/wifi/broadcom.sh b/package/broadcom-wl/files/lib/wifi/broadcom.sh
index 8b0212582..abfbfb978 100644
--- a/package/broadcom-wl/files/lib/wifi/broadcom.sh
+++ b/package/broadcom-wl/files/lib/wifi/broadcom.sh
@@ -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" ] || {