From e737e223480a6b5df1df69859e0bbf891ad68c88 Mon Sep 17 00:00:00 2001 From: wbx Date: Fri, 30 Sep 2005 11:36:37 +0000 Subject: check if some /proc files exist, before using it, for systems without diag kernel modul git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2008 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/base-files/default/etc/preinit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openwrt/package/base-files/default/etc/preinit') diff --git a/openwrt/package/base-files/default/etc/preinit b/openwrt/package/base-files/default/etc/preinit index ff9bb4b10..d64fdaa51 100755 --- a/openwrt/package/base-files/default/etc/preinit +++ b/openwrt/package/base-files/default/etc/preinit @@ -3,9 +3,9 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin mount none /proc -t proc insmod diag -echo 0x01 > /proc/sys/diag +[ -f /proc/sys/diag ] && echo 0x01 > /proc/sys/diag sleep 1 -if [ ! -f /proc/sys/reset ] || [ $(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 -- cgit v1.2.3