diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-11-11 12:57:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-11-11 12:57:23 +0000 |
commit | cbe21ae5f5ed4c52138989ecbe6af690e3e58be6 (patch) | |
tree | de30a6dbf942f7b0c30028bde404e8ad762253c1 /package/broadcom-wl | |
parent | bc779dc435d8e448b7d203996532772dd0b0fe60 (diff) | |
download | upstream-cbe21ae5f5ed4c52138989ecbe6af690e3e58be6.tar.gz upstream-cbe21ae5f5ed4c52138989ecbe6af690e3e58be6.tar.bz2 upstream-cbe21ae5f5ed4c52138989ecbe6af690e3e58be6.zip |
move two functions from broadcom.sh to /sbin/wifi
SVN-Revision: 5496
Diffstat (limited to 'package/broadcom-wl')
-rw-r--r-- | package/broadcom-wl/files/lib/wifi/broadcom.sh | 32 |
1 files changed, 1 insertions, 31 deletions
diff --git a/package/broadcom-wl/files/lib/wifi/broadcom.sh b/package/broadcom-wl/files/lib/wifi/broadcom.sh index 4f96b251be..27d9ca6be7 100644 --- a/package/broadcom-wl/files/lib/wifi/broadcom.sh +++ b/package/broadcom-wl/files/lib/wifi/broadcom.sh @@ -1,35 +1,5 @@ append DRIVERS "broadcom" -find_vif_config() {( - local vif="$1" - local cfg - local ifname - - config_get cfg "$vif" network - - [ -z "$cfg" ] && { - include /lib/network - scan_interfaces - - config_get ifname "$vif" ifnamea - - cfg="$(find_config "$ifname")" - } - [ -z "$cfg" ] && return 0 - echo "$cfg" -)} - -bridge_interface() {( - local cfg="$1" - [ -z "$cfg" ] && return 0 - - include /lib/network - scan_interfaces - - config_get iftype "$cfg" type - [ "$iftype" = bridge ] && config_get "$iftype" ifname -)} - scan_broadcom() { local device="$1" local wds= @@ -180,7 +150,7 @@ enable_broadcom() { config_get ifname "$vif" ifname append if_up "ifconfig $ifname up" ";$N" - net_cfg="$(find_vif_config "$vif")" + net_cfg="$(find_net_config "$vif")" [ -z "$net_cfg" ] || { bridge="$(bridge_interface "$net_cfg")" append if_up "start_net '$ifname' '$net_cfg'" ";$N" |