How can I install the wlan driver for my rt5390 in ubuntu 14.04
I have already tried this link but no help.
12 Answers
Here is what I've done on my own system. It works better than original driver.
- download archive :
- extract archive
- cd 2011_1007_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO
- download :
- patch -p1
- make sure /os/linux/config.mk reads HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y
- make
- sudo make install
- modprobe rt5390sta
You may need to to install and configure dkms to build automaticaly wifi drivers when kernel change :
You may need to disable some other drivers in /etc/modprobe.d/blacklist.conf
## Blacklist conflicting kernel modules
blacklist rt2800pci
blacklist rt2800lib
blacklist rt2x00usb
blacklist rt2x00pci
blacklist rt2x00lib
blacklist rt2860sta
blacklist rt3090staNote : I don't know why but sometimes (it's happens rarely), driver is unable to find wifi hotspot and write this in syslog :
GetDesiredTssiAndCurrentTssi: BBP TSSI INFO is not ready. (BbpR47 = 0x94)
RT5390_AsicTxAlcGetAutoAgcOffset: Incorrect desired TSSI or current TSSIAnd you may have to shutdown by power button of your machine. (If someone know why, I'am interressed)
The patch line should be:
patch -p1 <rt5592sta_fix_64bit_3.8.patch
This editor confuses < and leaves out the rest of the line :-)
Also see:
Thanks for the links, wasn't able to find available files