openwrtv3/openwrt/package/base-files/default/etc/preinit
Mike Baker 6a4f0e2b54 updates from whiterussian
SVN-Revision: 1504
2005-07-20 19:58:40 +00:00

18 lines
440 B
Bash
Executable file

#!/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 -o "$(nvram get failsafe)" = 1 ]; then
export FAILSAFE=true
[ "$(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
mount_root ${FAILSAFE:+failsafe}
exec /sbin/init