aboutsummaryrefslogtreecommitdiffstats
path: root/package/switch/files
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2013-06-21 16:54:37 +0000
committerJohn Crispin <blogic@openwrt.org>2013-06-21 16:54:37 +0000
commitf1b4824c865b228039d84b2605b2e7e4f34cddeb (patch)
tree37c9cbe251e4fb790aaa72e862c35822be30b491 /package/switch/files
parentd2642de7494bba312bbb22cfeb3ad77130a10047 (diff)
downloadmaster-187ad058-f1b4824c865b228039d84b2605b2e7e4f34cddeb.tar.gz
master-187ad058-f1b4824c865b228039d84b2605b2e7e4f34cddeb.tar.bz2
master-187ad058-f1b4824c865b228039d84b2605b2e7e4f34cddeb.zip
packages: clean up the package folder
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37007 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/switch/files')
-rw-r--r--package/switch/files/switch.sh53
1 files changed, 0 insertions, 53 deletions
diff --git a/package/switch/files/switch.sh b/package/switch/files/switch.sh
deleted file mode 100644
index 2563d410e5..0000000000
--- a/package/switch/files/switch.sh
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/sh
-# Copyright (C) 2006-2010 OpenWrt.org
-
-setup_switch_hw() {
- local dev="$1"
- local enable reset evlan
-
- config_get_bool enable "$dev" enable 1
- config_get_bool evlan "$dev" enable_vlan 1
- config_get_bool reset "$dev" reset 1
-
- local proc="/proc/switch/$dev"
- [ -d "$proc" ] && {
- ifconfig "$dev" up
- echo "$reset" > "$proc/reset"
- echo "$evlan" > "$proc/enable_vlan"
- [ -f "$proc/enable" ] && echo "$enable" > "$proc/enable"
- }
-
- local vlan
- for vlan in `seq 0 15`; do
- proc="/proc/switch/$dev/vlan/$vlan/ports"
- [ -f "$proc" ] && echo "" > "$proc"
- done
-}
-
-setup_switch_vlan() {
- local s="$1"
- local dev vlan ports
-
- config_get dev "$s" device
- config_get vlan "$s" vlan
- config_get ports "$s" ports
-
- [ -n "$dev" ] && [ -n "$vlan" ] && {
- ports="${ports%\*}"
-
- [ "$_vlan_pvid_set" = 1 ] || {
- ports="$ports*"
- _vlan_pvid_set=1
- }
-
- local proc="/proc/switch/$dev/vlan/$vlan/ports"
- [ -f "$proc" ] && echo "$ports" > "$proc"
- }
-}
-
-setup_switch() {
- _vlan_pvid_set=0
- config_load network
- config_foreach setup_switch_hw switch
- config_foreach setup_switch_vlan switch_vlan
-}