help me! I follow the steps on that post: How to install TP-LINK T2UH Wireless adapter Driver (Ralink mt7610u) But, my dongle only work on 2.4Ghz and not 5Ghz, what I do? My kernel is: 4.2.0-30-generic My Ubuntu is 14.04.04 (LTS).
Asked
Active
Viewed 1,023 times
1 Answers
-1
$ nano ~/mt7610u*/os/linux/rt_linux.c
@@ -1086,8 +1086,8 @@ int RtmpOSFileRead(RTMP_OS_FD osfd, char *pDataPtr, int readLen)
if (osfd->f_op && osfd->f_op->read) {
return osfd->f_op->read(osfd, pDataPtr, readLen, &osfd->f_pos);
} else {
- DBGPRINT(RT_DEBUG_ERROR, ("no file read method\n"));
- return -1;
+ DBGPRINT(RT_DEBUG_ERROR, ("no file read method, using vfs_read\n"));
+ return vfs_read(osfd, pDataPtr, readLen, &osfd->f_pos);
}
}
greenbag
- 1