From 21ba4e3570c1c2524b0733d492ced9634b259353 Mon Sep 17 00:00:00 2001 From: Greg Schafer Date: Thu, 9 Oct 2003 23:22:07 +0000 Subject: Internal markup reworking to fix the extraneous whitespace problem in the "tidy generated" web site pages. Essentially replace all ocurrences of with (and of course the matching closing tags). git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2958 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter08/kernel-inst.xml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'chapter08/kernel-inst.xml') diff --git a/chapter08/kernel-inst.xml b/chapter08/kernel-inst.xml index 5ef8dc406..5868d39d2 100644 --- a/chapter08/kernel-inst.xml +++ b/chapter08/kernel-inst.xml @@ -10,7 +10,7 @@ file in the kernel source tree for alternative methods. Prepare for compilation by running the following command: -make mrproper +make mrproper This ensures that the kernel tree is absolutely clean. The kernel team recommends that this command be issued prior to @@ -19,7 +19,7 @@ on the source tree being clean after untarring. Configure the kernel via a menu-driven interface: -make menuconfig +make menuconfig make oldconfig may be more appropriate in some situations. See the README file for @@ -39,15 +39,15 @@ systems" menu and is normally enabled by default. Verify dependencies and create dependency information files: -make CC=/opt/gcc-2.95.3/bin/gcc dep +make CC=/opt/gcc-2.95.3/bin/gcc dep Compile the kernel image: -make CC=/opt/gcc-2.95.3/bin/gcc bzImage +make CC=/opt/gcc-2.95.3/bin/gcc bzImage Compile the drivers which have been configured as modules: -make CC=/opt/gcc-2.95.3/bin/gcc modules +make CC=/opt/gcc-2.95.3/bin/gcc modules If you intend to use kernel modules, you will need an /etc/modules.conf file. Information pertaining @@ -60,16 +60,16 @@ interest to you. Install the modules: -make CC=/opt/gcc-2.95.3/bin/gcc modules_install +make CC=/opt/gcc-2.95.3/bin/gcc modules_install As nothing is complete without documentation, build the manual pages that come with the kernel: -make mandocs +make mandocs And install these pages: -cp -a Documentation/man /usr/share/man/man9 +cp -a Documentation/man /usr/share/man/man9 Kernel compilation has finished, but some of the files created still reside in the source tree. To complete the installation, two @@ -79,13 +79,13 @@ directory. The path to the kernel file may vary depending on the platform you're using. Issue the following command to install the kernel: -cp arch/i386/boot/bzImage /boot/lfskernel +cp arch/i386/boot/bzImage /boot/lfskernel System.map is a symbol file for the kernel. It maps the function entrypoints 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 +cp System.map /boot -- cgit v1.2.3-54-g00ecf