| 123456789101112131415161718 |
- #!/bin/sh
- PATH=/sbin:/bin:/usr/sbin:/usr/bin
- TMPDIR=/tmp
- umask 022
- mount -t proc proc /proc
- mount sysfs /sys -t sysfs
- if [ -e /proc/cpu/alignment ]; then
- echo "3" > /proc/cpu/alignment
- fi
- mount tmpfs -t tmpfs $TMPDIR
- echo 0 > /proc/sys/kernel/printk
- #
- # Here the recovery software must be started
- #
|