Open smar377 opened 4 years ago
The driver that is loaded is the one built into the kernel. The one from this repo is 8192ee. If you were to use wicd or NetworkManager, it would probably work. Configuring wpa_supplicant is very difficult.
Your build errors are due to the fact that you have not refreshed the sources with a 'git pull'. I fixed those errors a long time ago! If you are not using git, then you should. Using the zip file from GitHub means a complete redownload the the entire source every time there is a change. With git, you only download the changes. Much more saving of network bandwidth.
Thank you for your reply. I am using git and I have the latest version of the repo. The errors while trying to 'make' still persist though.
root@luffy:~# git clone https://github.com/lwfinger/rtl8192ee.git Cloning into 'rtl8192ee'... remote: Enumerating objects: 626, done. remote: Counting objects: 100% (626/626), done. remote: Compressing objects: 100% (402/402), done. remote: Total 626 (delta 228), reused 610 (delta 217), pack-reused 0 Receiving objects: 100% (626/626), 2.48 MiB | 4.54 MiB/s, done. Resolving deltas: 100% (228/228), done. Checking connectivity... done.
What kernel are you using? Your error is due to a change in kernel API for timers that changed in kernel 4.15.
I am using kernel:
root@luffy:~# uname -mrs Linux 4.4.0-184-generic x86_64
Then your problem is due to your distro backporting the change from kernel 4.15 to kernel 4.4. I do not handle that kind of change. You witt need to look at the source. In core/rtw_recv.c at line 4367, you will see a line that says:
That 15 will need to be changed to 4 in your case. Note, there will be lots of similar changes. You really should change to a newer kernel!
Hi,
I have the Wireless PCI Express adapter installed -> TL-WN881ND:
and I noticed that while trying to install the driver from your repository I am getting the following errors:
Checking further though I see that the driver is loaded:
but while trying to authenticate on my ESSID I cannot make my wireless connection work:
I am using wpa_supplicant for my ESSID setup (WPA2-Personal auth). I have been reading around a lot but I couldn't find the solution yet. I also check the VT-d on BIOS to see if it is enabled and it is.
Could you please help me on this? Any idea how to overcome the issue and make the wireless card work would be much appreciated.
Thank in advance, Stamatis