diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-01 01:12:57 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-01 01:12:57 +0000 |
commit | 0a7ebe9ab1187e5ef18994439f2b83bbc06a7414 (patch) | |
tree | 53529a5521be730282f204a5e4ba89f42be46ffd /package/switch | |
parent | 4d9258acb3abc998fc14ca792ee460052aacd642 (diff) |
switch: suppress boot error message on 2.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19922 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/switch')
-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 708ca85e8..f0bd8ce60 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" } } |