aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-10-08 19:40:42 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-10-08 19:40:42 +0000
commit0ebe9fa45e76f5ec30311fefd864ca1f37683432 (patch)
tree668d3d1c0f3a5aee0cdc24f6086460a1ca26232c
parent50993e3328b6805cf541d612bac341220b460457 (diff)
Added the last nodump attributes (I hope.)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6984 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter07/console.xml10
-rw-r--r--chapter07/hosts.xml2
-rw-r--r--chapter07/profile.xml4
-rw-r--r--chapter07/udev.xml2
-rw-r--r--chapter08/kernel.xml4
5 files changed, 11 insertions, 11 deletions
diff --git a/chapter07/console.xml b/chapter07/console.xml
index 231a5fcae..9da42a23c 100644
--- a/chapter07/console.xml
+++ b/chapter07/console.xml
@@ -40,7 +40,7 @@ EOF</userinput></screen>
character (accessible by pressing AltGr+E), the following settings are
correct:</para>
-<screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"
+<screen role="nodump"><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"
<literal>KEYMAP="es euro2"
FONT="lat9-16 -u iso01"</literal>
EOF</userinput></screen>
@@ -49,7 +49,7 @@ EOF</userinput></screen>
character set. If using ISO 8859-1 and, therefore, a pound sign
instead of Euro, the correct <envar>FONT</envar> line would be:</para>
-<screen><userinput>FONT="lat1-16"</userinput></screen></note>
+<screen role="nodump"><userinput>FONT="lat1-16"</userinput></screen></note>
<para>If the <envar>KEYMAP</envar> or <envar>FONT</envar> variable is not set, the
<command>console</command> initscript will not run the corresponding
@@ -61,12 +61,12 @@ applications. For example, Emacs displays its help (instead of erasing the
character before the cursor) when Backspace is pressed. To check if the keymap
in use is affected (this works only for i386 keymaps):</para>
-<screen><userinput>zgrep '\W14\W' <replaceable>[/path/to/your/keymap]</replaceable></userinput></screen>
+<screen role="nodump"><userinput>zgrep '\W14\W' <replaceable>[/path/to/your/keymap]</replaceable></userinput></screen>
<para>If the keycode 14 is Backspace instead of Delete, create the
following keymap snippet to fix this issue:</para>
-<screen><userinput>mkdir -pv /etc/kbd &amp;&amp; cat &gt; /etc/kbd/bs-sends-del &lt;&lt;"EOF"
+<screen role="nodump"><userinput>mkdir -pv /etc/kbd &amp;&amp; cat &gt; /etc/kbd/bs-sends-del &lt;&lt;"EOF"
<literal> keycode 14 = Delete Delete Delete Delete
alt keycode 14 = Meta_Delete
altgr alt keycode 14 = Meta_Delete
@@ -79,7 +79,7 @@ EOF</userinput></screen>
<para>Tell the <command>console</command> script to load this
snippet after the main keymap:</para>
-<screen><userinput>cat &gt;&gt;/etc/sysconfig/console &lt;&lt;"EOF"
+<screen role="nodump"><userinput>cat &gt;&gt;/etc/sysconfig/console &lt;&lt;"EOF"
<literal>KEYMAP_CORRECTIONS="/etc/kbd/bs-sends-del"</literal>
EOF</userinput></screen>
diff --git a/chapter07/hosts.xml b/chapter07/hosts.xml
index 30644cd34..f08dfab4e 100644
--- a/chapter07/hosts.xml
+++ b/chapter07/hosts.xml
@@ -62,7 +62,7 @@ machine will be connected to an existing network).</para>
<para>If a network card is not going to be configured, create the
<filename>/etc/hosts</filename> file by running:</para>
-<screen><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
+<screen role="nodump"><userinput>cat &gt; /etc/hosts &lt;&lt; "EOF"
<literal># Begin /etc/hosts (no network card version)
127.0.0.1 <replaceable>[&lt;HOSTNAME&gt;.example.org]</replaceable> <replaceable>[HOSTNAME]</replaceable> localhost
diff --git a/chapter07/profile.xml b/chapter07/profile.xml
index 98faa3457..5748762cb 100644
--- a/chapter07/profile.xml
+++ b/chapter07/profile.xml
@@ -65,7 +65,7 @@ canonical charmap for your chosen locale.</para>
<para>The list of all locales supported by Glibc can be obtained by running
the following command:</para>
-<screen><userinput>locale -a</userinput></screen>
+<screen role="nodump"><userinput>locale -a</userinput></screen>
<para>Locales can have a number of synonyms, e.g. <quote>ISO-8859-1</quote> is
also referred to as <quote>iso8859-1</quote> and <quote>iso88591</quote>.
@@ -76,7 +76,7 @@ canonical name, run the following command, where
<command>locale -a</command> for your preferred locale
(<quote>en_GB.iso88591</quote> in our example).</para>
-<screen><userinput>LC_ALL=<replaceable>[locale name]</replaceable> locale charmap</userinput></screen>
+<screen role="nodump"><userinput>LC_ALL=<replaceable>[locale name]</replaceable> locale charmap</userinput></screen>
<para>For the <quote>en_GB.iso88591</quote> locale, the above command
will print:</para>
diff --git a/chapter07/udev.xml b/chapter07/udev.xml
index bad5795f3..64b3a43c7 100644
--- a/chapter07/udev.xml
+++ b/chapter07/udev.xml
@@ -181,7 +181,7 @@ handled in one of two ways:</para>
<command>modprobe</command> command <quote>when loading this module,
also load this other module, at the same time.</quote> For example:</para>
-<screen><userinput>install snd-pcm modprobe -i snd-pcm ; modprobe \
+<screen role="nodump"><userinput>install snd-pcm modprobe -i snd-pcm ; modprobe \
snd-pcm-oss ; true</userinput></screen>
<para>This will cause the system to load both the
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml
index 468ab95d5..fb6a05b19 100644
--- a/chapter08/kernel.xml
+++ b/chapter08/kernel.xml
@@ -45,7 +45,7 @@ un-tarring.</para>
<para>If, in <xref linkend="ch-scripts-console" role=","/> it was decided to
compile the keymap into the kernel, issue the command below:</para>
-<screen><userinput>loadkeys -m /usr/share/kbd/keymaps/<replaceable>[path to keymap]</replaceable> &gt; \
+<screen role="nodump"><userinput>loadkeys -m /usr/share/kbd/keymaps/<replaceable>[path to keymap]</replaceable> &gt; \
drivers/char/defkeymap.c</userinput></screen>
<para>For example, if using a Dutch keyboard, use
@@ -56,7 +56,7 @@ information regarding particular kernel configuration requirements of
packages outside of LFS at <ulink
url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>:</para>
-<screen><userinput>make menuconfig</userinput></screen>
+<screen role="nodump"><userinput>make menuconfig</userinput></screen>
<para>Alternatively, <command>make oldconfig</command> may be more appropriate in some
situations. See the <filename>README</filename> file for more