Did you Prepare the Kernel Headers?
http://www.backtrack-linux.org/wiki/...Kernel_Headers
I'm trying to:
make
make install
in the mad-wifi directory.
I get this as soon as i type: make
/bin/sh: line 0: cd: /lib/modules/2.6.39.4/build: No such file or directory
Makefile.inc:66: *** /lib/modules/2.6.39.4/build is missing, please set KERNELPATH. Stop.
I've installed linux-headers and linux-source
It looks like they've been installed into: /usr/src/
I've also tried reinstalling the packages.
The command: uname -r returns:
2.6.39.4
Does anybody have any idea on how i can get make && make install working??
UPDATE: Solved With:
root@bt:~# prepare-kernel-sources
root@bt:~# cd /usr/src/linux
root@bt:~# cp -rf include/generated/* include/linux/
Last edited by g0bl1n; 10-26-2011 at 10:12 PM. Reason: Format Error
Did you Prepare the Kernel Headers?
http://www.backtrack-linux.org/wiki/...Kernel_Headers
Have you...g0tmi1k?
copy this code and paste it into console:
if you get error like"module.symvers is missing" during driver installation and you would like to fix that than after you prepare kernel headers do this:Code:cd /lib/modules/2.6.39.4/ ln -s /usr/src/linux build
however this action may take 2 hours and it's not very important.Code:cd /usr/src/linux/ make modules
important is to make symbolic link in your /lib/modules/$(uname -r)/
cheers!
Thanks man, it worked.. I appreciate the help!![]()