summaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl/files/etc
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-06-21 16:54:37 +0000
committerJohn Crispin <john@openwrt.org>2013-06-21 16:54:37 +0000
commit4ebf19b48fafc8d94e14e4ba779969613b241a6a (patch)
tree9918f890a8915023b49ea30948beb5d048c333fa /package/broadcom-wl/files/etc
parent44b1688e6c7b4f16f7165fbd560e1183aef69090 (diff)
downloadmaster-31e0f0ae-4ebf19b48fafc8d94e14e4ba779969613b241a6a.tar.gz
master-31e0f0ae-4ebf19b48fafc8d94e14e4ba779969613b241a6a.tar.bz2
master-31e0f0ae-4ebf19b48fafc8d94e14e4ba779969613b241a6a.zip
packages: clean up the package folder
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37007
Diffstat (limited to 'package/broadcom-wl/files/etc')
-rw-r--r--package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds61
-rwxr-xr-xpackage/broadcom-wl/files/etc/init.d/wlunbind29
2 files changed, 0 insertions, 90 deletions
diff --git a/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds b/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
deleted file mode 100644
index 0a563c2dbd..0000000000
--- a/package/broadcom-wl/files/etc/hotplug.d/net/20-broadcom_wds
+++ /dev/null
@@ -1,61 +0,0 @@
-include /lib/wifi
-
-setup_broadcom_wds() {
- local iface="$1"
- local remote="$(wlc ifname "$iface" wdsmac)"
-
- [ -z "$remote" ] && return
-
- config_cb() {
- [ -z "$CONFIG_SECTION" ] && return
-
- config_get type "$CONFIG_SECTION" TYPE
- [ "$type" = "wifi-iface" ] || return
-
- config_get network "$CONFIG_SECTION" network
- [ -z "$network" ] && return
-
- config_get addr "$CONFIG_SECTION" bssid
- addr=$(echo "$addr" | tr 'A-F' 'a-f')
- [ "$addr" = "$remote" ] && {
- local cfg="$CONFIG_SECTION"
-
- include /lib/network
- scan_interfaces
-
- for network in $network; do
- setup_interface "$iface" "$network"
- done
-
- config_get encryption "$cfg" encryption
- config_get key "$cfg" key
- config_get ssid "$cfg" ssid
-
- [ "$encryption" != "none" ] && {
- sleep 5
- case "$encryption" in
- psk|PSK)
- nas4not "$network" "$iface" up auto tkip psk "$key" "$ssid"
- ;;
- psk2|PSK2)
- nas4not "$network" "$iface" up auto aes psk "$key" "$ssid"
- ;;
- psk+psk2|psk2+psk|PSK+PSK2|PSK2+PSK)
- nas4not "$network" "$iface" up auto aes+tkip psk "$key" "$ssid"
- ;;
- *)
- nas4not lan "$iface" up auto aes "$encryption" "$key" "$ssid"
- ;;
- esac
- }
- }
- }
-
- config_load wireless
-}
-
-case "$ACTION" in
- add|register)
- [ "${INTERFACE%%0.*}" = wds ] && setup_broadcom_wds "$INTERFACE"
- ;;
-esac
diff --git a/package/broadcom-wl/files/etc/init.d/wlunbind b/package/broadcom-wl/files/etc/init.d/wlunbind
deleted file mode 100755
index 0a29db565f..0000000000
--- a/package/broadcom-wl/files/etc/init.d/wlunbind
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh /etc/rc.common
-# Copyright (C) 2010-2011 OpenWrt.org
-
-START=09
-
-unbind_driver() {
- local driver="$1"
- local sysfs="/sys/bus/pci/drivers/$driver"
- if [ -d "$sysfs" ]; then
- local lnk
- for lnk in $sysfs/*; do
- [ -h "$lnk" ] || continue
- case "${lnk##*/}" in
- *:*:*.*)
- logger "Unbinding WL PCI device ${lnk##*/} from $driver"
- echo -n "${lnk##*/}" > "$sysfs/unbind"
- ;;
- esac
- done
- fi
-}
-
-boot() {
- unbind_driver b43-pci-bridge
- unbind_driver bcma-pci-bridge
-}
-
-start() { :; }
-stop() { :; }