diff options
Diffstat (limited to 'chapter08/kernel.xml')
-rw-r--r-- | chapter08/kernel.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index 46cbb479d..a2b737b8d 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -115,10 +115,13 @@ required to complete the installation. Some files need to be copied to 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> + <para>The path to the kernel image may vary depending on the platform being + used. The filename below can be changed to suit your taste, but the stem of + the filename should be <emphasis>vmlinux</emphasis> to be compatible with + the automatic setup of the boot process described in the next section. The + following command assumes an x86 architecture:</para> -<screen><userinput remap="install">cp -v arch/x86/boot/bzImage /boot/lfskernel-&linux-version;</userinput></screen> +<screen><userinput remap="install">cp -v arch/x86/boot/bzImage /boot/vmlinux-&linux-version;-lfs-&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, |