According to Myers, Curtis: While burning my CPU.
> 
> I have recently recompiled my kernel in an attempt to utilize APM the
> following occurred:
> 
> I was running RedHat 5.2 kernel 2.0.36
> I downloaded 2.2.5 and untared in /usr/src/linux after renaming the old one

There's no need to rename the old one, it should be a symlink called "linux"
and be linked to linux-2.0.36, simply do;

cd /usr/src
rm linux
mkdir linux-2.2.5
ln -s linux-2.2.5 linux

> make xconfig and set the options I wanted
> make dep
> make clean
> make modules
> make modules_install
> make zImage
> copied zImage to /boot
> modified /etc/lilo.conf to add an option for new kernel
> ran lilo
> depmod -a 2.2.5 then returned Unresolved symbol(s) for everything I had
> setup as a module.

I would Now do;

cd /usr/src/linux
cp .config ..
make distclean
cp ../.config .
make oldconfig
make dep zImage   # No need for "clean" its been done.
make modules modules_install

Sometimes its not what you do but how you do it.
Dont forget to add the new kernel to /etc/lilo.conf and rerun lilo, or that
will be your next fence to cross.

> 
> I have tried everything I can think of, any help would be greatly
> appreciated.
> 
> Curits Myers
> [EMAIL PROTECTED]
> (301) 273-2423
> 


-- 
Regards Richard.
[EMAIL PROTECTED]

Reply via email to