1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-15 19:53:59 +02:00
openwrt/openwrt/target/default/target_skeleton/etc/preinit

17 lines
445 B
Plaintext
Raw Normal View History

#!/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
sleep 1
2005-05-05 14:01:56 +02:00
if [ $(cat /proc/sys/reset) = 1 ] || [ "$(/usr/sbin/nvram get failsafe)" = 1 ]; then
export FAILSAFE=true
while :; do { echo $(((X=(X+1)%8)%2)) > /proc/sys/diag; sleep $((X==0)); } done &
fi
/sbin/mount_root ${FAILSAFE:+failsafe}
exec /sbin/init