summaryrefslogtreecommitdiff
path: root/openwrt/package/base-files/default/etc/preinit
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2005-07-20 19:58:40 +0000
committerMike Baker <mbm@openwrt.org>2005-07-20 19:58:40 +0000
commit6a4f0e2b5488b191d8d96482717f56984bc2e386 (patch)
treec955985cd7d6588cb3e96865f49181f809cf2b85 /openwrt/package/base-files/default/etc/preinit
parent5ea9dc5f57a7c9fe3fd6fc891a3e3409986da2de (diff)
downloadmtk-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-xopenwrt/package/base-files/default/etc/preinit11
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