2

With Ubuntu 15.04 out the internal Wifi card MT7630E can't work. I download the same drivers from GitHub “MT7630-master” (worked in 15.04), but can't work on 15.10 with Kernel 4.2

I tried to compile the drivers but the error is related to

Linux-headers-4.2.0.16-generic
function rt2x00mac_configure_filter
FIF_PROMISC_IN_BSS undeclared (first use in this function)

I'm not a code hacker but looks something changed in the Kernel source, needed for this driver. Anybody could help with this?

David Foerster
  • 36,264
  • 56
  • 94
  • 147

1 Answers1

1

The solution given by David Foerster in the 1st commet worked for me. I'm ussing an Asus n750 with the MT7630 chipset. I followed his recomendation so: I went to the proposed link: https://github.com/neurobin/MT7630E/tree/e7130a42f8198cbf503a5a307175073c078bf340

Then I downloaded and unpacked the zipped file I opened a terminal and cd to the unpacked folder. In the terminal I directly wrote the code that are in the install file:

make
make install
sudo modprobe mt7630e
sudo modprobe mt76xx

and in that moment the wifi started to work. Thaks to Neurobin for such a fantastic job and thanks to David Foerster for the advice.