mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-27 14:41:06 +02:00
add hotplug script for setting up networking on wds interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5125 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
aac03860ff
commit
052dece811
34
package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
Normal file
34
package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user