gsoft 发表于 2013-10-17 21:51:03

Cubietruck Wifi网卡是不是8211E ? 装了lubuntu没wifi网卡驱动。

Cubietruck Wifi网卡是不是8211E ?   装了lubuntu没wifi网卡驱动。

gsoft 发表于 2013-10-18 14:33:49

没人知道.....:(

matson 发表于 2013-10-18 14:35:52

ap6210
modprobe bcmdhd

gsoft 发表于 2013-10-18 14:37:10

matson 发表于 2013-10-18 14:35 static/image/common/back.gif
ap6210
modprobe bcmdhd

终于有点消息了... 不容易啊.昨天弄的时候搜都不知道搜啥关键字.

matson 发表于 2013-10-18 14:39:35

gsoft 发表于 2013-10-18 14:37 static/image/common/back.gif
终于有点消息了... 不容易啊.昨天弄的时候搜都不知道搜啥关键字.
建议自己反省一下。ct的规格已经出来很久了

gsoft 发表于 2013-10-18 14:42:14

matson 发表于 2013-10-18 14:39 static/image/common/back.gif
建议自己反省一下。ct的规格已经出来很久了

:(不好意思, 俺是新手很多不懂,之前一直搞软件开发硬件很少接触. 所以关键信息搜都不知道要搜什么.

matson 发表于 2013-10-18 14:48:43

呵呵,板子上的wifi有写着AP6210,文档的话可以看
docs.cubieboard.org
linux-sunxi.org

遇到问题的话可以咨询
#cubieboard irc
#linux-sunxi irc
#cubieboard g+
cubieboard中文论坛, cubieboard英文论坛
....

youtube上也有很多相关的视频

xin8236 发表于 2013-10-18 14:59:56


Cb3 Fedora19 R3 Sd Card Installation文档最一段话,共参考。

Known Issues

    Wifi doesn't work on r3 version

The Wifi driver haven't been merged to linux-sunxi kernel, so the module doesn't work currently on r3 version. But a working wifi driver can be found at github.com/cubieboard2/linux-sunxi branch sunxi-3.4-ct-v101.

tll 发表于 2013-10-20 13:49:01

matson 发表于 2013-10-18 14:35 static/image/common/back.gif
ap6210
modprobe bcmdhd

我modprobe了,提示 get wl_host_wake gpio failed,为啥!!

soloforce 发表于 2013-10-21 11:53:08

本帖最后由 soloforce 于 2013-10-21 12:08 编辑

tll 发表于 2013-10-20 13:49 static/image/common/back.gif
我modprobe了,提示 get wl_host_wake gpio failed,为啥!!
我这里也是这个错误。用的是sunxi-linux-3.4-ct-v101的分支编译自己编译的内核

root@CubieTruck:~# modprobe bcmdhd
<4> get wl_host_wake gpio failed
get wl_host_wake gpio failed
ERROR: could not insert 'bcmdhd': Operation not permitted

看了一些代码,
        if (gpio_request(WL_HOST_WAKE_DEF_GPIO, "wl_host_wake")) {
                    pr_warning("[%s] get wl_host_wake gpio failed\n", __FUNCTION__);
                    wl_host_wake = -1;
                    return -1;
        }
原来是 gpio_request还没实现
static inline int gpio_request(unsigned gpio, const char *label)
{
            return -ENOSYS;
}

而且官方发布的 lubuntu 2013-10-15 内核源码里面也是这样的。。。
页: [1] 2 3
查看完整版本: Cubietruck Wifi网卡是不是8211E ? 装了lubuntu没wifi网卡驱动。