source:
trunk/minix/etc/rc.rescue@
15
Last change on this file since 15 was 9, checked in by , 14 years ago | |
---|---|
File size: 271 bytes |
Rev | Line | |
---|---|---|
[9] | 1 | #!/bin/sh |
2 | DRIVERS=/sbin | |
3 | RESCUE=/boot/rescue | |
4 | ||
5 | if [ "$1" != start ] | |
6 | then exit | |
7 | fi | |
8 | ||
9 | set -e | |
10 | service up $DRIVERS/rescue -dev /dev/rescue -args 128 -period 4HZ | |
11 | mkfs /dev/rescue | |
12 | mount /dev/rescue $RESCUE | |
13 | cd $DRIVERS | |
14 | cp -p at_wini floppy bios_wini $RESCUE | |
15 | service rescue $RESCUE |
Note:
See TracBrowser
for help on using the repository browser.