more wpa+wds patches

SVN-Revision: 7888
master
Mike Baker 18 years ago
parent 921cbfe002
commit 9a785f0b0a
  1. 2
      package/base-files/files/lib/network/config.sh
  2. 8
      package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
  3. 2
      package/broadcom-wl/files/lib/wifi/broadcom.sh

@ -91,7 +91,6 @@ prepare_interface() {
case "$iftype" in case "$iftype" in
bridge) bridge)
[ -x /usr/sbin/brctl ] && { [ -x /usr/sbin/brctl ] && {
ifconfig "$iface" up 2>/dev/null >/dev/null
ifconfig "br-$config" 2>/dev/null >/dev/null && { ifconfig "br-$config" 2>/dev/null >/dev/null && {
$DEBUG brctl addif "br-$config" "$iface" $DEBUG brctl addif "br-$config" "$iface"
# Bridge existed already. No further processing necesary # Bridge existed already. No further processing necesary
@ -104,6 +103,7 @@ prepare_interface() {
# result in another setup_interface() call, so we simply stop processing # result in another setup_interface() call, so we simply stop processing
# the current event at this point. # the current event at this point.
} }
ifconfig "$iface" up 2>/dev/null >/dev/null
return 1 return 1
} }
;; ;;

@ -16,6 +16,7 @@ setup_broadcom_wds() {
[ -z "$network" ] && return [ -z "$network" ] && return
config_get addr "$CONFIG_SECTION" bssid config_get addr "$CONFIG_SECTION" bssid
addr=$(echo "$addr" | tr 'A-F' 'a-f')
[ "$addr" = "$remote" ] && { [ "$addr" = "$remote" ] && {
local cfg="$CONFIG_SECTION" local cfg="$CONFIG_SECTION"
@ -28,8 +29,11 @@ setup_broadcom_wds() {
config_get key "$cfg" key config_get key "$cfg" key
config_get ssid "$cfg" ssid config_get ssid "$cfg" ssid
[ "$encryption" == "psk" ] && \ [ "$encryption" != "none" ] && {
nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid" sleep 1
nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid"
}
} }
} }

@ -191,7 +191,7 @@ enable_broadcom() {
append vif_post_up "enabled 1" "$N" append vif_post_up "enabled 1" "$N"
config_get ifname "$vif" ifname config_get ifname "$vif" ifname
append if_up "ifconfig $ifname up" ";$N" #append if_up "ifconfig $ifname up" ";$N"
local net_cfg bridge local net_cfg bridge
net_cfg="$(find_net_config "$vif")" net_cfg="$(find_net_config "$vif")"
[ -z "$net_cfg" ] || { [ -z "$net_cfg" ] || {

Loading…
Cancel
Save