aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorJeremy Utley <jeremy@linuxfromscratch.org>2003-09-11 20:27:27 +0000
committerJeremy Utley <jeremy@linuxfromscratch.org>2003-09-11 20:27:27 +0000
commitc94dd38cc7fe0ec74ad95516eb6a8c3efe9d0fc6 (patch)
tree7d33cea74e868708fb9f352567d349e01cc65ac6 /chapter06
parent73f7c1acf9ed425883e6471ae49adff6e403aa58 (diff)
Minor textual and command changes from lfs-dev
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2773 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/adjustingtoolchain.xml2
-rw-r--r--chapter06/changingowner.xml2
-rw-r--r--chapter06/chroot.xml3
-rw-r--r--chapter06/revisedchroot.xml11
4 files changed, 8 insertions, 10 deletions
diff --git a/chapter06/adjustingtoolchain.xml b/chapter06/adjustingtoolchain.xml
index eef803d7d..b7a1d1d5e 100644
--- a/chapter06/adjustingtoolchain.xml
+++ b/chapter06/adjustingtoolchain.xml
@@ -12,7 +12,7 @@ retained the source and build directories from the second pass over Binutils.
Install the adjusted linker scripts by running the following from within the
<filename class="directory">binutils-build</filename> directory:</para>
-<para><screen><userinput>make -C ld INSTALL=/tools/bin/install install-data-local</userinput></screen></para>
+<para><screen><userinput>make -C ld install-data-local</userinput></screen></para>
<para>The linker scripts now contain
no mention of <filename class="directory">/tools/lib</filename> anymore.
diff --git a/chapter06/changingowner.xml b/chapter06/changingowner.xml
index 2c61f61e7..ae956d53a 100644
--- a/chapter06/changingowner.xml
+++ b/chapter06/changingowner.xml
@@ -25,7 +25,7 @@ user <emphasis>root</emphasis> by running the following command:</para>
<para><screen><userinput>chown -R 0:0 /tools</userinput></screen></para>
<para>The command uses "0:0" instead of "root:root", because chown is unable
-to resolve the name "root" until glibc has been installed.</para>
+to resolve the name "root" until the password file has been created.</para>
</sect1>
diff --git a/chapter06/chroot.xml b/chapter06/chroot.xml
index 3664b6abe..195242c35 100644
--- a/chapter06/chroot.xml
+++ b/chapter06/chroot.xml
@@ -39,7 +39,8 @@ you must remember to again enter chroot and mount proc (discussed later)
before continuing with the installations.</para>
<para>Note that the bash prompt will say "I have no name!" This is
-normal, as the Glibc package hasn't been installed yet.</para>
+normal, as the <filename>/etc/passwd</filename> file has not been
+created yet.</para>
</sect1>
diff --git a/chapter06/revisedchroot.xml b/chapter06/revisedchroot.xml
index cf215a677..ee40f4b8d 100644
--- a/chapter06/revisedchroot.xml
+++ b/chapter06/revisedchroot.xml
@@ -3,16 +3,13 @@
<?dbhtml filename="revisedchroot.html" dir="chapter06"?>
<para>From now on when you exit the chroot environment and wish to re-enter
-it, you need to run the following modified chroot command. The one at the
-beginning of this chapter might not work anymore (if your host distribution
-was based on Glibc-2.2.x or older, the programs in <filename
-class="directory">/tools/bin</filename>, such as <filename>bash</filename>,
-will not work anymore). The following chroot command will work regardless
-of your host distribution's Glibc version.</para>
+it, you should run the following modified chroot command.</para>
<para>Additionally, now that all software has been installed there is no
need to use anything from the <filename
-class="directory">/tools</filename> directory anymore.</para>
+class="directory">/tools</filename> directory anymore, so it may be deleted.
+However, since the TCL, Expect, and DejaGNU packages only exist here, you
+may want to reinstall them after removing the /tools directory.</para>
<para><screen><userinput>chroot $LFS /usr/bin/env -i \
&nbsp;&nbsp;&nbsp;&nbsp;HOME=/root TERM=$TERM PS1='\u:\w\$ ' \