aboutsummaryrefslogtreecommitdiffstats
path: root/chapter08/kernel.xml
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2005-09-29 20:55:40 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2005-09-29 20:55:40 +0000
commit59988921ebad528d4b2ea1a78be81f5feee490d5 (patch)
treeb66eb3c3de1bbad64774418afb69989e18641765 /chapter08/kernel.xml
parent8c68addc8e21ceaec084545ee0ed6c983d054232 (diff)
Add -v to commands that accept it
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08/kernel.xml')
-rw-r--r--chapter08/kernel.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml
index ef242991e..468ab95d5 100644
--- a/chapter08/kernel.xml
+++ b/chapter08/kernel.xml
@@ -113,14 +113,14 @@ the <filename class="directory">/boot</filename> directory.</para>
<para>The path to the kernel image may vary depending on the platform
being used. The following command assumes an x86 architecture:</para>
-<screen><userinput>cp arch/i386/boot/bzImage /boot/lfskernel-&linux-version;</userinput></screen>
+<screen><userinput>cp -v arch/i386/boot/bzImage /boot/lfskernel-&linux-version;</userinput></screen>
<para><filename>System.map</filename> is a symbol file for the kernel.
It maps the function entry points of every function in the kernel API,
as well as the addresses of the kernel data structures for the running
kernel. Issue the following command to install the map file:</para>
-<screen><userinput>cp System.map /boot/System.map-&linux-version;</userinput></screen>
+<screen><userinput>cp -v System.map /boot/System.map-&linux-version;</userinput></screen>
<para>The kernel configuration file <filename>.config</filename>
produced by the <command>make menuconfig</command> step
@@ -128,7 +128,7 @@ above contains all the configuration selections for the kernel
that was just compiled. It is a good idea to keep this file for future
reference:</para>
-<screen><userinput>cp .config /boot/config-&linux-version;</userinput></screen>
+<screen><userinput>cp -v .config /boot/config-&linux-version;</userinput></screen>
<para>It is important to note that the files in the kernel source
directory are not owned by <emphasis>root</emphasis>. Whenever a