move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the...
[openwrt/staging/dedeckeh.git] / openwrt / target / linux / package / base-files / files / brcm-2.4 / etc / hotplug.d / net / 09-net
diff --git a/openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/net/09-net b/openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/net/09-net
deleted file mode 100644 (file)
index 9dd7796..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-setup_wl()
-{
-       [ -f /proc/net/wl0 ] && {
-               lsmod | grep wlcompat >&- || insmod wlcompat
-       }
-       iwconfig "$INTERFACE" 2>&- | grep -v 'no wireless' >&- && {
-               /sbin/wifi
-       }
-}
-setup_eth()
-{
-       [ -d /proc/switch ] || {
-               insmod switch-core
-               insmod switch-robo || insmod switch-adm
-       }
-       if="$(echo "$INTERFACE" | sed s,eth,et,)"
-       ifconfig "$INTERFACE" up 2>&- >&-
-       [ -d "/proc/switch/$INTERFACE" ] || return 0
-       echo "1" > "/proc/switch/$INTERFACE/reset"
-       echo "1" > "/proc/switch/$INTERFACE/enable_vlan"
-       for vlan in $(seq 0 15); do
-               eval "hwname=\"\${vlan${vlan}hwname}\""
-               [ "$hwname" = "$if" ] && {
-                       eval "vports=\"\${vlan${vlan}ports}\""
-                       [ -n "$vports" ] && echo "$vports" > "/proc/switch/$INTERFACE/vlan/$vlan/ports"
-                       $DEBUG vconfig add "$INTERFACE" "$vlan"
-               }
-       done
-}
-
-do_register()
-{
-       case "${INTERFACE%%[0-9]*}" in
-               eth) setup_eth;;
-               wl) setup_wl;;
-       esac
-}
-
-
-case "$ACTION" in
-       add|register) do_register;;
-esac