1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-23 21:37:10 +02:00

switch: suppress boot error message on 2.4

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19922 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2010-03-01 01:12:57 +00:00
parent 4d9258acb3
commit 0a7ebe9ab1

View 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"
}
}