aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-06-19 12:04:20 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-06-19 12:04:20 +0000
commitef57e3bcf1a7fb7eda2717fc2334fe599da01888 (patch)
tree2dfab531417a3727241a1770352ef10adda89493 /chapter05
parent3042296e6f99f7795884e3bf6ca8a8a646488912 (diff)
Amplied the Index entries for Hotplug and Linux-Libc-Headers.
Tags corrections. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3811 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/hostreqs.xml6
-rw-r--r--chapter05/sed.xml5
-rw-r--r--chapter05/udev.xml7
3 files changed, 9 insertions, 9 deletions
diff --git a/chapter05/hostreqs.xml b/chapter05/hostreqs.xml
index 8e1280bb7..d970ef56a 100644
--- a/chapter05/hostreqs.xml
+++ b/chapter05/hostreqs.xml
@@ -8,11 +8,11 @@
<?dbhtml filename="hostreqs.html"?>
<para>Due to the experimental nature of the current book, the host must be
-running at <emphasis>least</emphasis> a 2.6.2 kernel compiled with gcc-3.0 or
+running at <emphasis>least</emphasis> a 2.6.2 kernel compiled with GCC-3.0 or
higher. There are two main reasons for the high requirement. Firstly, we make
use of the Native Posix Threading Library (NPTL) whose testsuite will segfault
-if the host's kernel hasn't been compiled with gcc-3.0 or later. Secondly, the
-2.6.2 or later version of the kernel is required for the use of udev. Udev
+if the host's kernel hasn't been compiled with GCC-3.0 or later. Secondly, the
+2.6.2 or later version of the kernel is required for the use of Udev. Udev
creates devices dynamically by reading from the
<systemitem class="filesystem">sysfs</systemitem> file system. Only very
recently has support for this file system been implemented in most of the kernel
diff --git a/chapter05/sed.xml b/chapter05/sed.xml
index c909be585..836820b70 100644
--- a/chapter05/sed.xml
+++ b/chapter05/sed.xml
@@ -28,11 +28,10 @@
<title>Installation of Sed</title>
<para>A bug in this version of sed changes permissions on files modified using
-the in-place function (<userinput>-i</userinput> flag). Apply a patch to ensure
+the in-place function (<parameter>-i</parameter> flag). Apply a patch to ensure
that the original file permissions are preserved.</para>
-<screen><userinput>patch -Np1 -i ../sed-&sed-version;-permissions-1.patch
-</userinput></screen>
+<screen><userinput>patch -Np1 -i ../sed-&sed-version;-permissions-1.patch</userinput></screen>
<para>Prepare Sed for compilation:</para>
diff --git a/chapter05/udev.xml b/chapter05/udev.xml
index 1d24b4a45..390b7c928 100644
--- a/chapter05/udev.xml
+++ b/chapter05/udev.xml
@@ -31,13 +31,14 @@
<sect2 role="installation">
<title>Installation of Udev</title>
-<para>The udevstart program hardcodes the path to the udev program in itself,
-which is bad since we install udev in a non-standard location. Fix this by
+<para>The <command>udevstart</command> program hardcodes the path
+to the <command>udev</command> program in itself, which is bad since we
+install <command>udev</command> in a non-standard location. Fix this by
running the following:</para>
<screen><userinput>sed -i 's@/sbin/udev@/tools/sbin/udev@g' udevstart.c</userinput></screen>
-<para>Also assure that udev knows the correct location to look for its
+<para>Also assure that <command>udev</command> knows the correct location to look for its
configuration files:</para>
<screen><userinput>sed -i 's@/etc@/tools/etc@g' etc/udev/udev.conf.in</userinput></screen>