From 59988921ebad528d4b2ea1a78be81f5feee490d5 Mon Sep 17 00:00:00 2001 From: Matthew Burgess Date: Thu, 29 Sep 2005 20:55:40 +0000 Subject: Add -v to commands that accept it git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter08/kernel.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chapter08/kernel.xml') 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 /boot directory. The path to the kernel image may vary depending on the platform being used. The following command assumes an x86 architecture: -cp arch/i386/boot/bzImage /boot/lfskernel-&linux-version; +cp -v arch/i386/boot/bzImage /boot/lfskernel-&linux-version; System.map 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: -cp System.map /boot/System.map-&linux-version; +cp -v System.map /boot/System.map-&linux-version; The kernel configuration file .config produced by the make menuconfig 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: -cp .config /boot/config-&linux-version; +cp -v .config /boot/config-&linux-version; It is important to note that the files in the kernel source directory are not owned by root. Whenever a -- cgit v1.2.3-54-g00ecf