diff options
Diffstat (limited to 'chapter08/kernel.xml')
-rw-r--r-- | chapter08/kernel.xml | 6 |
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 |