mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-19 13:37:39 +00:00
010d1082d8
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8555 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
46 lines
1.0 KiB
Bash
46 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# Begin /etc/init.d/mountkernfs
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: mountkernfs
|
|
# Required-Start:
|
|
# Should-Start:
|
|
# Required-Stop:
|
|
# Should-Stop:
|
|
# Default-Start: S
|
|
# Default-Stop:
|
|
# Short-Description: Mounts /sys and /proc virtual (kernel) filesystems.
|
|
# Description: Mounts /sys and /proc virtual (kernel) filesystems.
|
|
# X-LFS-Default-Start: S00
|
|
# X-LFS-Default-Stop:
|
|
# X-LFS-Provided-By: LFS
|
|
### END INIT INFO
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
case "${1}" in
|
|
start)
|
|
message="Mounting kernel-based file systems:"
|
|
|
|
if ! mountpoint /proc > /dev/null; then
|
|
message="${message}${INFO} /proc${NORMAL}"
|
|
mount -n /proc || failed=1
|
|
fi
|
|
|
|
if ! mountpoint /sys > /dev/null; then
|
|
message="${message}${INFO} /sys${NORMAL}"
|
|
mount -n /sys || failed=1
|
|
fi
|
|
|
|
(exit ${failed})
|
|
evaluate_retval standard
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: ${0} {start}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# End /etc/init.d/mountkernfs
|