From 52b1e9bd2bfdb74a98442e6b5388187b57e795e8 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 11 Nov 2009 05:15:55 +0000 Subject: hostapd: automatically add wds sta interfaces of an ap to the right bridge git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18365 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/hostapd/files/hostapd.hotplug | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 package/hostapd/files/hostapd.hotplug (limited to 'package/hostapd/files') diff --git a/package/hostapd/files/hostapd.hotplug b/package/hostapd/files/hostapd.hotplug new file mode 100644 index 0000000000..2964224284 --- /dev/null +++ b/package/hostapd/files/hostapd.hotplug @@ -0,0 +1,12 @@ +if [ "$ACTION" = "add" -o "$ACTION" = "register" ]; then + case "$INTERFACE" in + wlan*.sta*) + local BASEIF="${INTERFACE%%\.*}" + + include /lib/network + scan_interfaces + local CONFIG="$(find_config "$BASEIF")" + [ -n "$CONFIG" ] && setup_interface "$INTERFACE" "$CONFIG" + ;; + esac +fi -- cgit v1.2.3