diff options
Diffstat (limited to 'openwrt/package/base-files/default/etc/preinit')
-rwxr-xr-x | openwrt/package/base-files/default/etc/preinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/preinit b/openwrt/package/base-files/default/etc/preinit index d64fdaa513..88c8920c94 100755 --- a/openwrt/package/base-files/default/etc/preinit +++ b/openwrt/package/base-files/default/etc/preinit @@ -7,7 +7,7 @@ insmod diag sleep 1 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 } |