我试图让WiFi工作(设备:Qualcomm Atheros Device 0042 (rev 31)),并在dmesg输出中找到了下面一行。
Direct firmware load for ath10k/cal-pci-0000:02:00.0.bin failed with error -2现在,我想这个驱动程序不包括在我的内核(Linux 4.4.0-62-generic #83-Ubuntu SMP Wed Jan 18 14:10:15 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux; Ubuntu Linux 16.04)中,所以我不得不克隆这个ath10kGitHub回购。
我要把哪些文件拷贝到目录i.o。来安装驱动程序?
下载固件包后,安装并重新启动设备仍然无法工作。
当我尝试连接时,我只得到(在dmesg输出中):
IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not readydmesg | grep ath给我的命令
[ 3.497692] ath10k_pci 0000:02:00.0: pci irq msi-x interrupts 8 irq_mode 0 reset_mode 0
[ 3.743026] ath10k_pci 0000:02:00.0: Direct firmware load for ath10k/cal-pci-0000:02:00.0.bin failed with error -2
[ 6.290044] ath10k_pci 0000:02:00.0: qca9377 hw1.1 (0x05020001, 0x003821ff sub 11ad:08a6) fw WLAN.TF.1.0-00267-1 fwapi 5 bdapi 2 htt-ver 3.1 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1 features ignore-otp
[ 6.290049] ath10k_pci 0000:02:00.0: debug 0 debugfs 1 tracing 1 dfs 0 testmode 0
[ 6.291556] ath: EEPROM regdomain: 0x69
[ 6.291559] ath: EEPROM indicates we should expect a direct regpair map
[ 6.291562] ath: Country alpha2 being used: 00
[ 6.291563] ath: Regpair used: 0x69
[ 6.298835] ath10k_pci 0000:02:00.0 wlp2s0: renamed from wlan0发布于 2017-02-15 15:02:30
通常,驱动程序会查找几个固件文件中的一个。如果找不到第一条,它会打印“失败”消息,查找第二条(或第三条),找到它并加载固件。
我建议您按以下方式更新固件;使用可工作的internet连接,请打开终端并执行以下操作:
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.163_all.deb
sudo dpkg -i linux-firmware*.deb 重新启动并告诉我们你的无线是否工作。如果您仍然有问题,请告诉我们:
dmesg | grep ath注意:编辑以更新经常更改的链接。
https://askubuntu.com/questions/883651
复制相似问题