summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/sysfs
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-08-08 16:01:26 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-08-08 16:01:26 (EDT)
commit420fe74025198cfaecc9ef318b4edb50dd0cf37a (patch)
tree8e66faf7503a1f1e018e671feba5147e8f6b54a5 /src.etc/init.d/sysfs
parentca6be5ba1c7af6effe5f1665f67ce0ea0da2b74d (diff)
Rename sysfs init script to mountkernfs.
Diffstat (limited to 'src.etc/init.d/sysfs')
-rw-r--r--src.etc/init.d/sysfs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src.etc/init.d/sysfs b/src.etc/init.d/sysfs
deleted file mode 100644
index e5e9508..0000000
--- a/src.etc/init.d/sysfs
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-case "${1}" in
- start)
- printf 'Mounting process and system filesystems... '
- [ ! -e /proc/mounts ] && mount -t proc proc /proc
- [ ! -e /sys/kernel ] && mount -t sysfs sysfs /sys
- printf 'done.\n'
- ;;
- stop)
- printf 'Unmounting process and system filesystems... '
- [ -e /proc/mounts ] && umount /proc
- [ -e /sys/kernel ] && umount /sys
- printf 'done.\n'
- ;;
- *)
- printf 'Usage: %s {start|stop}\n' "${0}" >&2
- exit 1
- ;;
-esac