From: Waldemar Brodkorb Date: Thu, 29 Sep 2005 12:02:01 +0000 (+0000) Subject: check if /proc/sys/reset exist, from sven-ola X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=65545ffa0733533cb3d2cc00cebd1226abb07f10;p=15.05%2Fopenwrt.git check if /proc/sys/reset exist, from sven-ola git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2002 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/openwrt/package/base-files/default/etc/preinit b/openwrt/package/base-files/default/etc/preinit index 34de88c602..ff9bb4b10a 100755 --- a/openwrt/package/base-files/default/etc/preinit +++ b/openwrt/package/base-files/default/etc/preinit @@ -5,7 +5,7 @@ mount none /proc -t proc insmod diag echo 0x01 > /proc/sys/diag sleep 1 -if [ $(cat /proc/sys/reset) = 1 -o "$(nvram get failsafe)" = 1 ]; then +if [ ! -f /proc/sys/reset ] || [ $(cat /proc/sys/reset) = 1 -o "$(nvram get failsafe)" = 1 ]; then export FAILSAFE=true [ "$(nvram get boot_wait)" != "on" ] && { nvram set boot_wait=on