Quote:
Originally Posted by Tralfas ok this is my first time compiling the kernel since i installed gentoo. first i downloaded the new kernel source with this command ...... Code: emerge gentoo-sources now im having trouble getting to the next step in upgrading
(taken from this page TIP Upgrading your kernel - Gentoo Linux Wiki) Code: cp <old-source>/.config linux/.config my question is how do i find out what the old source was so i can make the old config file part of the new source that way i dont have to go back through and redo the kernel? |
In Gentoo, when you emerge a kernel it sits into /usr/src/, under that directory you will have many subdirectories with the different kernel sources that you installed.
You can cd into that dir, and then use ls to see the installed kernel trees. Then use uname -r to see what version you are currently using. Whith the info from this two commands, you should be able to find which is the right thing to do.
I leave that as an exercise. If you can't find the way yourself, just post the output of these two commands here, and I will try to help:
Quote:
$ ls -l /usr/src/
$ uname -r
|