diff options
| author | Mike Baker <mbm@openwrt.org> | 2005-07-20 19:58:40 +0000 |
|---|---|---|
| committer | Mike Baker <mbm@openwrt.org> | 2005-07-20 19:58:40 +0000 |
| commit | 6a4f0e2b5488b191d8d96482717f56984bc2e386 (patch) | |
| tree | c955985cd7d6588cb3e96865f49181f809cf2b85 /openwrt/package/base-files/default/etc/preinit | |
| parent | 5ea9dc5f57a7c9fe3fd6fc891a3e3409986da2de (diff) | |
| download | mtk-20170518-6a4f0e2b5488b191d8d96482717f56984bc2e386.zip mtk-20170518-6a4f0e2b5488b191d8d96482717f56984bc2e386.tar.gz mtk-20170518-6a4f0e2b5488b191d8d96482717f56984bc2e386.tar.bz2 | |
updates from whiterussian
SVN-Revision: 1504
Diffstat (limited to 'openwrt/package/base-files/default/etc/preinit')
| -rwxr-xr-x | openwrt/package/base-files/default/etc/preinit | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/openwrt/package/base-files/default/etc/preinit b/openwrt/package/base-files/default/etc/preinit index 0c59893..b23f883 100755 --- a/openwrt/package/base-files/default/etc/preinit +++ b/openwrt/package/base-files/default/etc/preinit @@ -1,17 +1,18 @@ #!/bin/sh +export PATH=/bin:/sbin:/usr/bin:/usr/sbin mount none /proc -t proc insmod diag echo 0x01 > /proc/sys/diag sleep 1 -if [ $(cat /proc/sys/reset) = 1 ] || [ "$(/usr/sbin/nvram get failsafe)" = 1 ]; then +if [ $(cat /proc/sys/reset) = 1 -o "$(nvram get failsafe)" = 1 ]; then export FAILSAFE=true - [ "$(/usr/sbin/nvram get boot_wait)" != "on" ] && { - /usr/sbin/nvram set boot_wait=on - /usr/sbin/nvram commit + [ "$(nvram get boot_wait)" != "on" ] && { + nvram set boot_wait=on + nvram commit } while :; do { echo $(((X=(X+1)%8)%2)) > /proc/sys/diag; sleep $((X==0)); } done & fi -/sbin/mount_root ${FAILSAFE:+failsafe} +mount_root ${FAILSAFE:+failsafe} exec /sbin/init |
