projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
mac80211: rename a misnamed patch
[openwrt.git]
/
package
/
switch
/
files
/
switch.sh
diff --git
a/package/switch/files/switch.sh
b/package/switch/files/switch.sh
index
708ca85
..
6517ca9
100644
(file)
--- a/
package/switch/files/switch.sh
+++ b/
package/switch/files/switch.sh
@@
-1,5
+1,5
@@
#!/bin/sh
#!/bin/sh
-# Copyright (C) 2006-20
09
OpenWrt.org
+# Copyright (C) 2006-20
10
OpenWrt.org
setup_switch_hw() {
local dev="$1"
setup_switch_hw() {
local dev="$1"
@@
-13,8
+13,14
@@
setup_switch_hw() {
[ -d "$proc" ] && {
echo "$reset" > "$proc/reset"
echo "$evlan" > "$proc/enable_vlan"
[ -d "$proc" ] && {
echo "$reset" > "$proc/reset"
echo "$evlan" > "$proc/enable_vlan"
- echo "$enable" > "$proc/enable"
+
[ -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() {
}
setup_switch_vlan() {
This page took
0.026863 seconds
and
4
git commands to generate.