1

Have the problem: Installed Ubuntu 16.04 LTS, and try to load driver to Wi-Fi tp link ac 600 t2uh. Here is the instruction to do this: How to install TP-LINK T2UH Wireless adapter Driver (Ralink mt7610u)

I do the same, but faced with problem.

~/Desktop/mt7610u_wifi$ sudo make
make -C tools
make[1]: Entering directory '/home/vadim/Desktop/mt7610u_wifi/tools'
gcc -g bin2h.c -o bin2h
make[1]: Leaving directory '/home/vadim/Desktop/mt7610u_wifi/tools'
/home/vadim/Desktop/mt7610u_wifi/tools/bin2h
chipset = mt7610u
cp -f os/linux/Makefile.6 /home/vadim/Desktop/mt7610u_wifi/os/linux/Makefile
make -C /lib/modules/4.10.0-28-generic/build SUBDIRS=/home/vadim/Desktop/mt7610u_wifi/os/linux modules
make[1]: Entering directory '/usr/src/linux-headers-4.10.0-28-generic'
  CC [M]  /home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.o
In file included from /home/vadim/Desktop/mt7610u_wifi/include/rtmp_os.h:44:0,
                 from /home/vadim/Desktop/mt7610u_wifi/include/rtmp_comm.h:75,
                 from /home/vadim/Desktop/mt7610u_wifi/include/rt_config.h:33,
                 from /home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c:28:
/home/vadim/Desktop/mt7610u_wifi/include/os/rt_linux.h:77:0: warning: "EXT_BUILD_CHANNEL_LIST" redefined
 #define EXT_BUILD_CHANNEL_LIST  /* must define with CRDA */
 ^
<command-line>:0:0: note: this is the location of the previous definition
In file included from /home/vadim/Desktop/mt7610u_wifi/include/os/rt_linux.h:98:0,
                 from /home/vadim/Desktop/mt7610u_wifi/include/rtmp_os.h:44,
                 from /home/vadim/Desktop/mt7610u_wifi/include/rtmp_comm.h:75,
                 from /home/vadim/Desktop/mt7610u_wifi/include/rt_config.h:33,
                 from /home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c:28:
/home/vadim/Desktop/mt7610u_wifi/include/cfg80211.h:35:49: error: ‘IEEE80211_NUM_BANDS’ undeclared here (not in a function)
  struct ieee80211_supported_band Cfg80211_bands[IEEE80211_NUM_BANDS];
                                                 ^
/home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c: In function ‘announce_802_3_packet’:
/home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c:341:16: warning: unused variable ‘pAd’ [-Wunused-variable]
  RTMP_ADAPTER *pAd = (RTMP_ADAPTER *)pAdSrc;
                ^
In file included from /home/vadim/Desktop/mt7610u_wifi/include/rtmp_os.h:44:0,
                 from /home/vadim/Desktop/mt7610u_wifi/include/rtmp_comm.h:75,
                 from /home/vadim/Desktop/mt7610u_wifi/include/rt_config.h:33,
                 from /home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c:28:
/home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c: In function ‘STA_MonPktSend’:
/home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c:450:35: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long unsigned int’ [-Wformat=]
         DBGPRINT(RT_DEBUG_ERROR, ("%s : Size is too large! (%d)\n", __FUNCTION_
                                   ^
/home/vadim/Desktop/mt7610u_wifi/include/os/rt_linux.h:669:16: note: in definition of macro ‘DBGPRINT_RAW’
         printk Fmt;               \
                ^
/home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.c:450:9: note: in expansion of macro ‘DBGPRINT’
         DBGPRINT(RT_DEBUG_ERROR, ("%s : Size is too large! (%d)\n", __FUNCTION_
         ^
scripts/Makefile.build:294: recipe for target '/home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.o' failed
make[2]: *** [/home/vadim/Desktop/mt7610u_wifi/os/linux/../../os/linux/rt_profile.o] Error 1
Makefile:1524: recipe for target '_module_/home/vadim/Desktop/mt7610u_wifi/os/linux' failed
make[1]: *** [_module_/home/vadim/Desktop/mt7610u_wifi/os/linux] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.10.0-28-generic'
Makefile:403: recipe for target 'LINUX' failed
make: *** [LINUX] Error 2

May you help me to solve it? Need I update kernel?

pomsky
  • 68,507
Bronin
  • 11
  • 2
    Please see my post #18 here: https://ubuntuforums.org/showthread.php?t=2367163&highlight=mt7610u I recommend that you buy a different device. – chili555 Oct 29 '17 at 13:19
  • Direct link to that post: https://ubuntuforums.org/showthread.php?t=2367163&p=13670888#post13670888 – David Foerster Nov 01 '17 at 09:57

1 Answers1

1

You might check github.com for newer mt7610u drivers that will work with 16.04...

https://github.com/search?o=desc&q=mt7610u&s=updated&type=Repositories&utf8=%E2%9C%93

sort by "recently updated".

You might look at:

https://github.com/ulli-kroll/mt7610u

heynnema
  • 70,711
  • I followed your recomendation, and maneged to do first step: But what should I afer "make" command? I have error with "sudo make install" vadim@vadim-PC:~/Desktop/mt7610u-master$ sudo make install make: *** No rule to make target 'install'. Stop. – Bronin Oct 29 '17 at 14:26
  • No problem, I found instruction on github behind. – Bronin Oct 29 '17 at 14:37