source: trunk/minix/etc/rc.rescue@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 271 bytes
Line 
1#!/bin/sh
2DRIVERS=/sbin
3RESCUE=/boot/rescue
4
5if [ "$1" != start ]
6then exit
7fi
8
9set -e
10service up $DRIVERS/rescue -dev /dev/rescue -args 128 -period 4HZ
11mkfs /dev/rescue
12mount /dev/rescue $RESCUE
13cd $DRIVERS
14cp -p at_wini floppy bios_wini $RESCUE
15service rescue $RESCUE
Note: See TracBrowser for help on using the repository browser.