LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Kernel (https://www.linuxquestions.org/questions/linux-kernel-70/)
-   -   Kernel 2.6.17.1 'make modules' problem (https://www.linuxquestions.org/questions/linux-kernel-70/kernel-2-6-17-1-make-modules-problem-456973/)

Shioni 06-21-2006 11:54 AM

Kernel 2.6.17.1 'make modules' problem
 
Hi!
I downloaded 2.6.17.1 from kernel.org, I successfully compiled the kernel, but when I'm trying to compile modules, I get this:
Code:

make modules
  CHK    include/linux/version.h
  Building modules, stage 2.
  MODPOST

and thats it! And:
Code:

make modules_install
if [ -r System.map -a -x /sbin/depmod ]; then /sbin/depmod -ae -F System.map  2.6.17.1; fi

What's wrong?

What is the difference between 2.6.17.1 and 2.6.17-rc2? what does rc2 mean? Thank you!

sundialsvcs 06-22-2006 11:49 AM

Hasn't make modules been unnecessary for some time now? Or is my poor brain just foggy this morning from not-enough-coffee?

Also... before compiling a brand new kernel I always do the following:
  • Make a backup copy of .config, appropriately named and dated, in a subdirectory of /root.
  • mv .config foobar (Save this file so that it doesn't go away when we...)
  • make distclean (Wipe out everything...)
  • mv foobar .config (Now put it back.)
In this way, I am trying to be certain that everything from the past (either my past or the distro-maker's past) is gone, and that I am compiling all of the source and pristine source.

jayjwa 06-30-2006 10:28 AM

Quote:

Originally Posted by sundialsvcs
Hasn't make modules been unnecessary for some time now?

Yes. It's just making the config, then "make", "make modules_install" for a 2.6. There's an "install" target in the Makefile, but I've not used it.

I think "rc" is release candidate.


All times are GMT -5. The time now is 01:12 AM.