19th Feb, 2016, 10:38 AM
As the title suggests, I'm trying to install drivers for my Linksys AE6000 5g wireless usb (mt7610u driver). I've followed a few guides for the mt7601u, substituting my mt7610u source for the build. It builds without issues, then installs without issues... but I don't think it installed properly, as I can't find it with modprobe, and lsusb just shows "Linksys".. no model number or driver number.
Where did I go wrong?
Code:
make[1]: Leaving directory '/usr/src/linux'
cp -f /home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916/os/linux/mt7650u_sta.ko /tftpboot 2>/dev/null || :
root@xbian:/home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916# make install
make -C /home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916/os/linux -f Makefile.6 install
make[1]: Entering directory '/home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916/os/linux'
mkdir: cannot create directory ‘/etc/Wireless’: File exists
rm -rf /etc/Wireless/RT2870STA
mkdir /etc/Wireless/RT2870STA
cp /home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916/conf/RT2870STA.dat /etc/Wireless/RT2870STA/.
install -d /lib/modules/4.1.13+/kernel/drivers/net/wireless/
install -m 644 -c mt7650u_sta.ko /lib/modules/4.1.13+/kernel/drivers/net/wireless/
/sbin/depmod -a 4.1.13+
make[1]: Leaving directory '/home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916/os/linux'
root@xbian:/home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916#
root@xbian:/home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916# ifup ra0
wpa_supplicant: /sbin/wpa_supplicant daemon failed to start
run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1
Failed to bring up ra0.
root@xbian:/home/xbian/mt7610u_wifi_sta_v3002_dpo_20130916#
xbian@xbian ~ $ lsusb
Bus 001 Device 007: ID 2040:7200 Hauppauge
Bus 001 Device 006: ID 148f:5370 Ralink Technology, Corp. RT5370 Wireless Adapter
Bus 001 Device 005: ID 1a40:0201 Terminus Technology Inc. FE 2.1 7-port Hub
Bus 001 Device 004: ID 13b1:003e Linksys
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9514 Standard Microsystems Corp.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
xbian@xbian ~ $
Where did I go wrong?