|
Where to put kernel source and create headers
So I built a custom kernel and installed it with:
make
make modules
make modules_install install
mv -r 2.6.29.2 /usr/src
ln -s 2.6.29.2 linux
Now I am trying to install a module (VirtualBox) and it cannot create the module. It says "the kernel source cannot be found at /lib/modules/2.6.29.2/build or lib/modules/2.6.29.2/source."
I made a new symlink to changing lib/modules/2.6.29.2/build and ~/source to /usr/src/2.6.29.2 but my module still will not build. Is there something else I am supposed to do?
Last edited by Silvr; 05-15-2009 at 03:48 PM.
|