帮帮我!我按照那篇帖子上的步骤操作: 如何安装 TP-LINK T2UH 无线适配器驱动程序(Ralink mt7610u) 但是,我的加密狗只能在 2.4Ghz 上运行,不能在 5Ghz 上运行,我该怎么办?我的内核是:4.2.0-30-generic 我的 Ubuntu 是 14.04.04 (LTS)。
答案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);
}
}