diff options
author | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-06 10:36:33 +0000 |
---|---|---|
committer | wbx <wbx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-07-06 10:36:33 +0000 |
commit | fbf4448d40762aaaac81fffca51286406343b4b9 (patch) | |
tree | 3cf4dcf69d69131d8f297d70ccb65e83355970f0 | |
parent | 2c94d1206b12cdd9d2efbbf322f6dc6f795dfecd (diff) |
set boot_wait to on in the earliest possible moment. this makes webupgrade safer and also nvram resets. idea and patch from Georg Lucas
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1358 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | openwrt/target/default/target_skeleton/etc/preinit | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openwrt/target/default/target_skeleton/etc/preinit b/openwrt/target/default/target_skeleton/etc/preinit index 7a02e31215..061673035c 100755 --- a/openwrt/target/default/target_skeleton/etc/preinit +++ b/openwrt/target/default/target_skeleton/etc/preinit @@ -1,4 +1,8 @@ #!/bin/sh +[ "$(/usr/sbin/nvram get boot_wait)" != "on" ] && { + /usr/sbin/nvram set boot_wait=on + /usr/sbin/nvram commit +} mount none /proc -t proc insmod diag echo 0x01 > /proc/sys/diag |