From 9de7ed3e463da696871318e43a1b1b6fde308c5d Mon Sep 17 00:00:00 2001 From: Timothy Bauscher Date: Wed, 15 Jan 2003 14:57:46 +0000 Subject: [PATCH] Remove old explanation file. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2334 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/kernel-exp.xml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 chapter06/kernel-exp.xml diff --git a/chapter06/kernel-exp.xml b/chapter06/kernel-exp.xml deleted file mode 100644 index c24591e85..000000000 --- a/chapter06/kernel-exp.xml +++ /dev/null @@ -1,35 +0,0 @@ - -Command explanations - -ln -s /static/bin/pwd /bin/pwd: In the kernel -source, the path to the pwd program is hard-wired as -/bin/pwd, so we create a temporary symlink to account -for that. At the end we remove it again. - -make mrproper: This ensures that the kernel -tree is absolutely clean. The kernel team recommends that this command be -issued prior to each kernel compilation. You -shouldn't rely on the source tree being clean after untarring. - -make include/linux/version.h and -make symlinks: This creates the -include/linux/version.h file and the platform-specific -include/asm symlink. - -cp -HR include/asm /usr/include and -cp -R include/asm-generic /usr/include: -These commands copy the platform-specific assembler kernel header files to -/usr/include/asm and /usr/include/asm-generic. - -cp -R include/linux /usr/include: -This command copies the cross-platform kernel header files to -/usr/include. - -touch /usr/include/linux/autoconf.h: This -creates an empty autoconf.h file. As we do not yet -configure the kernel, we have to create this file ourselves for those few -kernel header files that make use of it, to avoid compilation failures. - - -