I am trying to recompile kernel for RedHat 5.2 and all I get is vmlinux
not vmlinuz (or zImage). I get different errors about something missing
but can't figure it out. Have I not installed all the right packages? I
am installing packages via nfs from another machine because I don't have
a cdrom on this machine. Here's the script I wrote for compiling and it
has worked on other machines;

#!/bin/sh
cd /usr/src/linux
make config
make dep
make clean
make boot
make modules
rm -rf /lib/modules/2.0.36-old
mv /lib/modules/2.0.36 /lib/modules/2.0.36-old
make modules_install
cp /usr/src/linux/arch/i386/boot/zImage /boot/vmlinuz
/sbin/lilo

Reply via email to