X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/18e309aa929423cace2216c5bcfa18fe4b15d7c2..4e6ddce407aa82ee2726cb6419050799f228dabd:/openwrt/package/base-files/default/etc/preinit?ds=sidebyside diff --git a/openwrt/package/base-files/default/etc/preinit b/openwrt/package/base-files/default/etc/preinit index b23f8833e..88c8920c9 100755 --- a/openwrt/package/base-files/default/etc/preinit +++ b/openwrt/package/base-files/default/etc/preinit @@ -1,12 +1,13 @@ #!/bin/sh +. /etc/nvram.sh 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 [ $(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" ] && { + [ -x /usr/sbin/nvram -a "$(nvram get boot_wait)" != "on" ] && { nvram set boot_wait=on nvram commit }