abhijeet2096 / TL-WN722N-V2

Drivers for TP-LINK TL-WN722N version 2 .Clean ported for kernel 4.4, 4.8, 4.10 ,4.13 ,4.14 & 4.15 from source which was at 4.3
https://abhijeet2096.github.io/TL-WN722N-V2/
MIT License
127 stars 40 forks source link

Unable to compile on raspberry pi #5

Closed AmritSd closed 6 years ago

AmritSd commented 6 years ago

Hello , I am trying to make my wifi adapter work with the raspberry pi 3 . But I get the following error -

"******************************************" "NO SKRC,we will use default KSRC" "******************************************" install -p -m 644 8188eu.ko /lib/modules/4.9.35-v7+/kernel/drivers/net/wireless/ install: cannot stat ‘8188eu.ko’: No such file or directory Makefile:1373: recipe for target 'install' failed make: *** [install] Error 1 my kernel version is 4.9.35-v7+

I am a noob when it comes to linux . so, any help will be appreciated. Thanks in advance.

Dogcatfee commented 6 years ago

You need the linux headers package, most likely linux-headers. By default these Makefiles try to cross compile when run on an ARM CPU, to get around this you can use make ARCH=arm -j4. -j4 just makes compiling faster, and is not required.

abhijeet2096 commented 6 years ago

Hey , try to install "linux-headers" , and check again !