diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-03-24 12:12:12 -0500 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-03-24 12:12:12 -0500 |
commit | 9b463a2154202958f8b9909b3548cea4207aa2c5 (patch) | |
tree | 9943377f7c172dc6195aea4cbb3527f76f6621bb /bootscripts | |
parent | bcb20b4701e957f150c8358a919093aa5d3fd8f0 (diff) | |
parent | b8a2b7e20149b2d05f7b89617046696656d34a13 (diff) |
Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunk
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/lfs/init.d/mountvirtfs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bootscripts/lfs/init.d/mountvirtfs b/bootscripts/lfs/init.d/mountvirtfs index 3507beea7..639634377 100644 --- a/bootscripts/lfs/init.d/mountvirtfs +++ b/bootscripts/lfs/init.d/mountvirtfs @@ -2,7 +2,7 @@ ######################################################################## # Begin mountvirtfs # -# Description : Mount proc, sysfs, and run +# Description : Ensure proc, sysfs, run, and dev are mounted # # Authors : Gerard Beekmans - gerard@linuxfromscratch.org # DJ Lucas - dj@linuxfromscratch.org @@ -20,10 +20,12 @@ # Should-Stop: # Default-Start: S # Default-Stop: -# Short-Description: Mounts /sys and /proc virtual (kernel) filesystems. -# Mounts /run (tmpfs) and /dev (devtmpfs). +# Short-Description: Mounts various special fs needed at start # Description: Mounts /sys and /proc virtual (kernel) filesystems. # Mounts /run (tmpfs) and /dev (devtmpfs). +# This is done only if they are not already mounted. +# with the kernel config proposed in the book, dev +# should be automatically mounted by the kernel. # X-LFS-Provided-By: LFS ### END INIT INFO |