Hello,
I need to compile a kernel module and need to have the following links to the kernel source:
/lib/modules/`uname -r`/build
/lib/modules/`uname -r`/source
I have this setup:
Is this correct?
SOLVED: It seems correct
I need to compile a kernel module and need to have the following links to the kernel source:
/lib/modules/`uname -r`/build
/lib/modules/`uname -r`/source
I have this setup:
Code:
root@frodo:/usr/src# ls -al /lib/modules/`uname -r`/build lrwxrwxrwx 1 root root 40 2007-07-05 23:16 /lib/modules/2.6.20-16-generic/build -> /usr/src/linux-headers-2.6.20-16-generic root@frodo:/usr/src# ls -al /lib/modules/`uname -r`/source lrwxrwxrwx 1 root root 5 2007-08-22 00:03 /lib/modules/2.6.20-16-generic/source -> build
SOLVED: It seems correct
Comment