[package] util-linux: prevent packaging libtool placeholder scripts (#11224)
[openwrt.git] / package / switch / files / switch.sh
index f0bd8ce..2563d41 100644 (file)
@@ -11,10 +11,17 @@ setup_switch_hw() {
 
        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() {
This page took 0.019508 seconds and 4 git commands to generate.