From 05bbc05eaacd5e755fb6ad65d9e3559ac0e079bf Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 15 Oct 2006 17:52:31 +0000 Subject: [PATCH] add hotplug script for setting up networking on wds interfaces SVN-Revision: 5125 --- .../files/etc/hotplug.d/net/20-broadcom_wds | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds 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 new file mode 100644 index 0000000000..3ca4cd2dc6 --- /dev/null +++ b/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds @@ -0,0 +1,34 @@ +include /lib/wifi + +setup_broadcom_wds() { + local iface="$1" + local remote="$(wlc ifname "$iface" wdsmac)" + + [ -z "$remote" ] && return + + config_cb() { + [ -z "$CONFIG_SECTION" ] && return + + config_get type "$CONFIG_SECTION" TYPE + [ "$type" = "wifi-iface" ] || return + + config_get network "$CONFIG_SECTION" network + [ -z "$network" ] && return + + config_get addr "$CONFIG_SECTION" bssid + [ "$addr" = "$remote" ] && { + include /lib/network + scan_interfaces + + setup_interface "$iface" "$network" + } + } + + config_load wireless +} + +case "$ACTION" in + add|register) + [ "${INTERFACE%%0.*}" = wds ] && setup_broadcom_wds "$INTERFACE" + ;; +esac