diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-06-26 20:42:08 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-06-26 20:42:08 +0000 |
commit | 4b7db99798885095b033f783fc43fd05f35ce99d (patch) | |
tree | 192172e4308a54c99842fb81722defbfc9d195e3 /package/broadcom-wl-old/files/etc/hotplug.d/net/20-broadcom_wds | |
parent | 1fe4998cee9a2c318d694a9109f871109f67dff0 (diff) |
remove the old broadcom wl driver for linux 2.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21947 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-wl-old/files/etc/hotplug.d/net/20-broadcom_wds')
-rw-r--r-- | package/broadcom-wl-old/files/etc/hotplug.d/net/20-broadcom_wds | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/package/broadcom-wl-old/files/etc/hotplug.d/net/20-broadcom_wds b/package/broadcom-wl-old/files/etc/hotplug.d/net/20-broadcom_wds deleted file mode 100644 index f314a2527..000000000 --- a/package/broadcom-wl-old/files/etc/hotplug.d/net/20-broadcom_wds +++ /dev/null @@ -1,59 +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 - - setup_interface "$iface" "$network" - - 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 |