Code block listing 16.4 reads: # make dep && make clean bzImage modules modules_install # cp /usr/src/linux/arch/i386/boot/bzImage /boot The "bzImage" target is not valid on the SPARC. This code block appears to have been copied from the x86 install instructions, and should probably be replaced with: # make dep && make clean vmlinux modules modules_install (The second line should be deleted, since it's covered in code listing 16.6)
Changed in doc.
I think the second line still needs to have "i386" changed to "SPARC"...
oops..the "vmlinux" file is actually in the root of the kernel source tree, meaning the second line should point to "/usr/src/linux/vmlinux". - tg
Corrected to point to the correct location: "/usr/src/linux/vmlinux"