View previous topic :: View next topic |
Author |
Message |
FcukThisGame l33t
Joined: 20 Apr 2005 Posts: 776 Location: /lost+found
|
Posted: Wed Feb 15, 2006 8:11 pm Post subject: [Solved]make menuconfig Still Shows Old Kernel Sources |
|
|
I recently updated my gentoo-sources from 2.6.12-r10 to 2.6.15-r5 and when i run make menuconfig it shows in the top left corner Linux Kernel 2.6.12-r10.
Do I have to load a different .config file or something? _________________ Sysadmin by trade, geek by choice
DESKTOP:
i7-3770K|8800GTS-512|32GB|1x256GB SSD|4x1TB|HD/BDROM|1920x1200+1680x1050
Win8 Pro w/ Hyper-V|Server 2012 VM|Ubuntu VM|Gentoo VM
TABLET: Samsung Ativ 700t
i5-3317U|4GB|128GB SSD|1920x1080 Touch
Win8
Last edited by FcukThisGame on Wed Feb 15, 2006 11:52 pm; edited 1 time in total |
|
Back to top |
|
|
i92guboj Bodhisattva
Joined: 30 Nov 2004 Posts: 10315 Location: Córdoba (Spain)
|
Posted: Wed Feb 15, 2006 8:34 pm Post subject: |
|
|
No, you are probably doing
Code: |
cd /usr/src/linux
make menuconfig
|
But that "linux" is not a directory, but a symlink pointing to one of the source trees under /usr/src, in this case, since the kernel installs stotted, you should have the previous sources there still, and, if you did not, you need to erase the "linux" symlink and point it to the new kernel.
So
Code: |
cd /usr/src
rm linux
ln -s <insert here the updated tree> linux
cd linux
make menuconfig
|
|
|
Back to top |
|
|
FcukThisGame l33t
Joined: 20 Apr 2005 Posts: 776 Location: /lost+found
|
Posted: Wed Feb 15, 2006 11:52 pm Post subject: |
|
|
yep. thanks. _________________ Sysadmin by trade, geek by choice
DESKTOP:
i7-3770K|8800GTS-512|32GB|1x256GB SSD|4x1TB|HD/BDROM|1920x1200+1680x1050
Win8 Pro w/ Hyper-V|Server 2012 VM|Ubuntu VM|Gentoo VM
TABLET: Samsung Ativ 700t
i5-3317U|4GB|128GB SSD|1920x1080 Touch
Win8 |
|
Back to top |
|
|
|