summaryrefslogtreecommitdiffstats
path: root/package/hostapd/files/hostapd.hotplug
diff options
context:
space:
mode:
Diffstat (limited to 'package/hostapd/files/hostapd.hotplug')
-rw-r--r--package/hostapd/files/hostapd.hotplug12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/hostapd/files/hostapd.hotplug b/package/hostapd/files/hostapd.hotplug
new file mode 100644
index 000000000..296422428
--- /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