root/floppyfw/devkitstuff/S01filesystems

Revision 46, 379 bytes (checked in by root, 6 years ago)

Preparing for 3.0 release, this was fixes found under testing.

Line 
1#!/bin/sh
2#
3# Mounts filesystems.
4#
5
6umask 077
7
8start() {
9        echo -n "Mounting filesystems: "
10        /bin/mount -o remount,rw /
11        /bin/mount -t proc proc /proc
12        /bin/mount -a
13        echo "OK"
14}
15
16stop() {
17        return
18}
19restart() {
20        return
21}
22
23case "$1" in
24  start)
25        start
26        ;;
27  stop)
28        stop
29        ;;
30  restart|reload)
31        restart
32        ;;
33  *)
34        echo $"Usage: $0 {start|stop|restart}"
35        exit 1
36esac
37
38exit $?
39
Note: See TracBrowser for help on using the browser.