aboutsummaryrefslogtreecommitdiffstats
path: root/chapter02/mounting.xml
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2015-03-31 21:25:42 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2015-03-31 21:25:42 +0000
commit5f28defe66b1c5875e8531502c25d4198642dba7 (patch)
treee48e2c67d160c7f1ba2198adc46a217327931d3b /chapter02/mounting.xml
parent4519609261c3f1fba5b0055e16f248704c76b026 (diff)
Adjust discussion of LFS envronment variable to be before first use.
Use --with-glibc-version=2.11 in gcc-pass1. Update to dejagnu-1.5.3. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10886 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter02/mounting.xml')
-rw-r--r--chapter02/mounting.xml14
1 files changed, 4 insertions, 10 deletions
diff --git a/chapter02/mounting.xml b/chapter02/mounting.xml
index 3e6c25d0c..873896384 100644
--- a/chapter02/mounting.xml
+++ b/chapter02/mounting.xml
@@ -13,17 +13,11 @@
<para>Now that a file system has been created, the partition needs to
be made accessible. In order to do this, the partition needs to be
mounted at a chosen mount point. For the purposes of this book, it is
- assumed that the file system is mounted under <filename
- class="directory">/mnt/lfs</filename>, but the directory choice is up
- to you.</para>
+ assumed that the file system is mounted under the directory specified by the
+ <envar>LFS</envar> envronment varibale as described in the previous section.
+ </para>
- <para>Choose a mount point and assign it to the <envar>LFS</envar>
- environment variable by running:</para>
-
-<screen role="nodump"><userinput>export LFS=/mnt/lfs</userinput></screen>
-
- <para>Next, create the mount point and mount the LFS file system by
- running:</para>
+ <para>Create the mount point and mount the LFS file system by running:</para>
<screen role="nodump"><userinput>mkdir -pv $LFS
mount -v -t ext4 /dev/<replaceable>&lt;xxx&gt;</replaceable> $LFS</userinput></screen>