summaryrefslogtreecommitdiffstats
path: root/openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/09-net
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-15 16:39:15 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-15 16:39:15 +0000
commitb651ae2a92679b7df2a4560350c3fb0728f6a705 (patch)
treebdd6b9a2400515f3f16e7dc6e2fc52b1a6ab6295 /openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/09-net
parentfdfc3c76a503dd3f228c00f04c8cbe69a1350b29 (diff)
move brcm-specific hotplug net scripts into the right place
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2990 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/09-net')
-rw-r--r--openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/09-net40
1 files changed, 0 insertions, 40 deletions
diff --git a/openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/09-net b/openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/09-net
deleted file mode 100644
index 75604ebef..000000000
--- a/openwrt/target/linux/package/base-files/files/brcm-2.4/etc/hotplug.d/09-net
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh
-setup_eth()
-{
- for part in $(nvram get unused_ifnames); do
- [ "$part" = "$INTERFACE" ] && exit 0
- done
- [ -f /proc/net/wl0 ] && {
- lsmod | grep wlcompat >&- || insmod wlcompat
- }
- iwconfig "$INTERFACE" 2>&- | grep -v 'no wireless' >&- && {
- /sbin/wifi
- }
- [ -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/enable_vlan"
- for vlan in $(seq 0 15); do
- [ "$(nvram get vlan${vlan}hwname)" = "$if" ] && {
- vports="$(nvram get 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;;
- esac
-}
-
-
-case "$ACTION" in
- add|register) do_register;;
-esac