diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-11-18 23:44:37 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-11-18 23:44:37 +0000 |
commit | d659bf4682be1f5468bd95ebf3aad123a8f28404 (patch) | |
tree | de40fc0b02660a8717b82f0ad0edc27a4ee00ee5 /chapter06/kernfs.xml | |
parent | f55c13ff879507b52aaf1388beeca425b5455eac (diff) |
Minor editorial changes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10374 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/kernfs.xml')
-rw-r--r-- | chapter06/kernfs.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter06/kernfs.xml b/chapter06/kernfs.xml index 3e8d6d332..bfd583455 100644 --- a/chapter06/kernfs.xml +++ b/chapter06/kernfs.xml @@ -22,7 +22,7 @@ <para>Begin by creating directories onto which the file systems will be mounted:</para> -<screen><userinput>mkdir -v $LFS/{dev,proc,sys}</userinput></screen> +<screen><userinput>mkdir -pv $LFS/{dev,proc,sys}</userinput></screen> <sect2> <title>Creating Initial Device Nodes</title> @@ -107,7 +107,7 @@ mount -vt sysfs sysfs $LFS/sys</userinput></screen> <screen><userinput>if [ -h $LFS/dev/shm ]; then link=$(readlink $LFS/dev/shm) - mkdir -p $LFS/$link + mkdir -pv $LFS/$link mount -vt tmpfs shm $LFS/$link unset link else |