minix/etc/rc.rescue

29 lines
405 B
Plaintext
Raw Normal View History

#!/bin/sh
DRIVERS=/sbin
RESCUE=/boot/rescue
if [ "$1" != start ]
then exit
fi
service up $DRIVERS/rescue -dev /dev/rescue -args 128 -period 4HZ
mkfs /dev/rescue || exit
mount /dev/rescue $RESCUE || exit
cp $DRIVERS/memory $RESCUE
label=`sysenv label`
case "$label" in
AT)
d=at_wini
;;
FLOPPY)
d=floppy
;;
BIOS)
d=bios_wini
;;
*) exit
;;
esac
2005-10-21 15:23:22 +02:00
cp $DRIVERS/$d $RESCUE/driver
service rescue $RESCUE