: I've got this problem of mine... I can't get my computer to compile a new
: kernel... This is my "User-batch":
: CD /USR/SRC/LINUX
: Make Config
: [Now I answer alot of questions]
: Make Dep
: Make Clean
The basic steps are as follows:
cd /usr/include
rm -rf linux
rm -rf asm
ln -s /usr/src/linux/include/linux .
ln -s /usr/src/linux/include/asm .
cd /usr/src/linux
make mrproper
make config
make dep
make zImage
When you machine is finished compiling you will find you new
kernel in /usr/src/linux/arch/i386/boot/. Copy it to the
root , run lilo and you off. I suggest you make a copy of
your old kernel just in case. I add another entry to lilo.conf
for convience sake but thats up to you. BTW all of this is
right out of the README. Good Luck!
joe