switch: suppress boot error message on 2.4
authorNicolas Thill <nico@openwrt.org>
Mon, 1 Mar 2010 01:12:57 +0000 (01:12 +0000)
committerNicolas Thill <nico@openwrt.org>
Mon, 1 Mar 2010 01:12:57 +0000 (01:12 +0000)
SVN-Revision: 19922

package/switch/files/switch.sh

index 708ca85e8fb3bd35dbeac283690858e8c9584cc5..f0bd8ce60fe4f312557812fa14885342838ef6e3 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# Copyright (C) 2006-2009 OpenWrt.org
+# Copyright (C) 2006-2010 OpenWrt.org
 
 setup_switch_hw() {
        local dev="$1"
@@ -13,7 +13,7 @@ setup_switch_hw() {
        [ -d "$proc" ] && {
                echo "$reset"  > "$proc/reset"
                echo "$evlan"  > "$proc/enable_vlan"
-               echo "$enable" > "$proc/enable"
+               [ -f "$proc/enable" ] && echo "$enable" > "$proc/enable"
        }
 }