diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-09 21:16:38 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-09 21:16:38 +0000 |
commit | ff25dade798a0a0c45fea55a70a38f88978bb02d (patch) | |
tree | a09d5db0baabc83e7ac40e02995e4d1a3694b161 /package/hostapd/files | |
parent | 70de34b67dfb3b00bc1f87902ab28f7c2f5cfe8e (diff) |
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.hotplug | 12 |
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 |