aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-11 12:57:23 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-11 12:57:23 +0000
commit65666689218998b32247f15af923f645c0418524 (patch)
tree9783e8afaae2c30d274a127e9c51efd874661124 /package/base-files
parent585b116050bcb2f7627954a21d3dbb62cc54ab3e (diff)
downloadmaster-187ad058-65666689218998b32247f15af923f645c0418524.tar.gz
master-187ad058-65666689218998b32247f15af923f645c0418524.tar.bz2
master-187ad058-65666689218998b32247f15af923f645c0418524.zip
move two functions from broadcom.sh to /sbin/wifi
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5496 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/default/sbin/wifi32
1 files changed, 32 insertions, 0 deletions
diff --git a/package/base-files/default/sbin/wifi b/package/base-files/default/sbin/wifi
index 67ccb8a0b0..e13c3528a9 100755
--- a/package/base-files/default/sbin/wifi
+++ b/package/base-files/default/sbin/wifi
@@ -3,6 +3,38 @@
. /etc/functions.sh
+find_net_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
+)}
+
+
wifi_up() {
for device in ${2:-$DEVICES}; do (
config_get iftype "$device" type