Problemas após instalar o driver do adaptador sem fio TP-LINK T2UH AC600 (Ralink mt7610u)

1

me ajude! Eu sigo os passos nesse post: como instalar o TP-LINK. Driver de adaptador sem fio T2UH (Ralink mt7610u) Mas, meu dongle só funciona em 2.4Ghz e não em 5Ghz, o que eu faço? Meu kernel é: 4.2.0-30-genérico Meu Ubuntu é 14.04.04 (LTS).

    
por Hygens Silva 24.02.2016 / 13:55

1 resposta

-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);
    }
}
    
por greenbag 12.05.2016 / 07:53