aboutsummaryrefslogtreecommitdiffstats
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
commitd16b006295e2112f9147cf4281a33a773d77ab37 (patch)
treea09d5db0baabc83e7ac40e02995e4d1a3694b161 /package/hostapd/files
parent96f8b6422004d719b1a294c96bb0b31c7a3132bc (diff)
downloadupstream-d16b006295e2112f9147cf4281a33a773d77ab37.tar.gz
upstream-d16b006295e2112f9147cf4281a33a773d77ab37.tar.bz2
upstream-d16b006295e2112f9147cf4281a33a773d77ab37.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
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20104 3c298f89-4303-0410-b956-a3cf2f4a3e73
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