Jetson TK1でWi-FiカードIntel 7260Mを動作させるには?

Jetson TK1でWi-FiカードIntel 7260Mを動作させるには?

jetson tk1を21.6に再フラッシュしました。以下は私の成功を示しています。

head -n 1 /etc/nv_tegra_release
# R21 (release), REVISION: 6.0, GCID: 9887687, BOARD: ardbeg, EABI: hard, DATE: Sat Oct 14 01:25:24 UTC 2017

その後、git repoで複製されたinstallGrinch.shを実行しました。以下は私も成功したことを示しています。

ubuntu@tegra-ubuntu:~$ uname -a
Linux tegra-ubuntu 3.10.40-grinch-21.3.4 #1 SMP PREEMPT Fri May 1 10:41:09 UTC 2015 armv7l armv7l armv7l GNU/Linux

しかし、再起動後もまだWi-Fiはありません。

ubuntu@tegra-ubuntu:~$ lspci
00:00.0 PCI bridge: NVIDIA Corporation Device 0e12 (rev a1)
01:00.0 Network controller: Intel Corporation Wireless 7260 (rev cb)
02:00.0 PCI bridge: NVIDIA Corporation Device 0e13 (rev a1)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0c)


ubuntu@tegra-ubuntu:~$ lspci -vvv -s 01:00.0
01:00.0 Network controller: Intel Corporation Wireless 7260 (rev cb)
    Subsystem: Intel Corporation Device 4c70
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 130
    Region 0: Memory at 32200000 (64-bit, non-prefetchable) [size=8K]
    Capabilities: <access denied>

"ifconfig":

eth0      Link encap:Ethernet  HWaddr 00:04:4b:70:94:12  
          inet addr:192.168.1.101  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::204:4bff:fe70:9412/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:492 errors:0 dropped:0 overruns:0 frame:0
          TX packets:396 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:44073 (44.0 KB)  TX bytes:47290 (47.2 KB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:696 errors:0 dropped:0 overruns:0 frame:0
          TX packets:696 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:55276 (55.2 KB)  TX bytes:55276 (55.2 KB)

また、コマンドを使用してもdmesg | grep iwlまだ何も表示されません。私はBaidu / Googleで原因を検索して見つけることができるすべてを試しました。 linux-firmwareのインストールが機能しないため、ファームウェア-iwlwifiをインストールしました。https://packages.debian.org/stretch/firmware-iwlwifi。 「dpkg -l | grep iwl」は、ファームウェア-iwlwifiが正常にインストールされたことを示します。しかし、そのすべてで問題は解決されませんでした。最後に、「lspci -vvv -s 03:00.0」コマンドを使用してイーサネットコントローラの詳細を表示しました。出力は次のとおりです。

ubuntu@tegra-ubuntu:~$ lspci -vvv -s 03:00.0
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0c)
    Subsystem: Realtek Semiconductor Co., Ltd. Device 0123
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 642
    Region 0: I/O ports at 10000 [size=256]
    Region 2: Memory at 32100000 (64-bit, non-prefetchable) [size=4K]
    Region 4: Memory at 12100000 (64-bit, prefetchable) [size=16K]
    Capabilities: <access denied>
    Kernel driver in use: r8169

最後の行には「使用されたカーネルドライバ:r8169「というのに上記の「lspci -vvv -s 01:00.0」情報にはこういう内容はありません。 では何が問題なのでしょうか? ドライバーですか、カーネルですか?

ベストアンサー1

おすすめ記事