summaryrefslogtreecommitdiffstats
path: root/package/hostapd/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-03-09 21:16:38 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-03-09 21:16:38 +0000
commitad1507756b17a278d92721d7b9ec24f906d7bd2c (patch)
tree5216485e30738f08cfb9cf6ccd5a3ecd5162a702 /package/hostapd/files
parent875b9fc0aebf3b1f02ccf1fc5d304cb1416b9e6c (diff)
downloadmaster-31e0f0ae-ad1507756b17a278d92721d7b9ec24f906d7bd2c.tar.gz
master-31e0f0ae-ad1507756b17a278d92721d7b9ec24f906d7bd2c.tar.bz2
master-31e0f0ae-ad1507756b17a278d92721d7b9ec24f906d7bd2c.zip
hostapd: remove the hotplug script for adding wds station interfaces to a bridge - it suffers from race conditions. instead let hostapd add the interfaces to the bridge
SVN-Revision: 20104
Diffstat (limited to 'package/hostapd/files')
-rw-r--r--package/hostapd/files/hostapd.hotplug12
1 files changed, 0 insertions, 12 deletions
diff --git a/package/hostapd/files/hostapd.hotplug b/package/hostapd/files/hostapd.hotplug
deleted file mode 100644
index 2964224284..0000000000
--- a/package/hostapd/files/hostapd.hotplug
+++ /dev/null
@@ -1,12 +0,0 @@
-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