source: bootscripts-standard/clfs/init.d/mountkernfs@ 743075d

Last change on this file since 743075d was 1d02f01, checked in by Jim Gifford <clfs@…>, 17 years ago

Merged Updates from BLFS/LFS SVNs

  • Property mode set to 100644
File size: 841 bytes
RevLine 
[7125722]1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/mountkernfs
4#
5# Description : Mount proc and sysfs
6#
7# Authors : Gerard Beekmans - gerard@linuxfromscratch.org
8#
9# Version : 00.00
10#
11# Notes :
12#
13########################################################################
14
15. /etc/sysconfig/rc
16. ${rc_functions}
17
18case "${1}" in
19 start)
20 boot_mesg -n "Mounting kernel-based file systems:" ${INFO}
21
[1d02f01]22 if ! mountpoint /proc >/dev/null; then
[7125722]23 boot_mesg -n " /proc" ${NORMAL}
24 mount -n /proc || failed=1
25 fi
26
[1d02f01]27 if ! mountpoint /sys >/dev/null; then
[7125722]28 boot_mesg -n " /sys" ${NORMAL}
29 mount -n /sys || failed=1
30 fi
31
32 boot_mesg "" ${NORMAL}
33
34 (exit ${failed})
35 evaluate_retval
36 ;;
37
38 *)
39 echo "Usage: ${0} {start}"
40 exit 1
41 ;;
42esac
43
44# End $rc_base/init.d/mountkernfs
Note: See TracBrowser for help on using the repository browser.