diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-03-01 01:12:57 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-03-01 01:12:57 +0000 |
commit | 2d100861a45d3c7c86339729f8a687bac853f2ac (patch) | |
tree | 22bdd7d0227830c8a868d0f90d13c8c072027271 /package | |
parent | 4f4066d3e057567c0f78a3069ef967fd787ac94a (diff) | |
download | upstream-2d100861a45d3c7c86339729f8a687bac853f2ac.tar.gz upstream-2d100861a45d3c7c86339729f8a687bac853f2ac.tar.bz2 upstream-2d100861a45d3c7c86339729f8a687bac853f2ac.zip |
switch: suppress boot error message on 2.4
SVN-Revision: 19922
Diffstat (limited to 'package')
-rw-r--r-- | package/switch/files/switch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/switch/files/switch.sh b/package/switch/files/switch.sh index 708ca85e8f..f0bd8ce60f 100644 --- a/package/switch/files/switch.sh +++ b/package/switch/files/switch.sh @@ -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" } } |