At 10:11 PM 28-03-00, George Kalovyrnas wrote:
>It is the 5th time that I have problems with the compilation of the kernel.
>I'm trying to compile the kernel 2.2.15-2.5.0 ( I think ).
>The command sequence that I use is the following:
>
>make menuconfig
>make dep
>make clean
>make bzImage
>make modules
>make modules_install
>make install
>
>The result of this painfull procedure is to get many messages about
>unresolved symbols for some modules (about 15 of them).
>Is the above procedure the right one?
>Am I forgetting something?
>
>Thanks in advance.
>
>George Kalovyrnas
>Greece

You need to do this;  (Note: make a backup if you want to be 100% sure you 
don't do anything wrong)


Boot your new kernel (Yes you will get some module errors) and login as root;

rm -rf /lib/modules/2.2.15-2/*  # Remove all old module entries

cd /usr/src/linux               # Go to the source location
make modules_install            # Install the current modules
depmod -a                       # make a new modules.dep file (Which is 
what is causing the problems)

Reboot and you should have no errors about modules.

Rgds,
Darryl (Who just did this himself to fix the same problem)


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to