Intel 9260 WiFi on jetson nano / jetbot

Hello everyone,

Great news, I got the Intel 9260 WIFI and Bluetooth working on my Jetson Nano by doing the following:

  1. Get the latest version of Jetpack and fresh image on your nano
    2.Clone and build and install the iwlwifi backport:

cd ~
git clone kernel/git/iwlwifi/backport-iwlwifi.git - Backport tree for iwlwifi
cd backport-iwlwifi
make defconfig-iwlwifi-public
sed -i ‘s/CPTCFG_IWLMVM_VENDOR_CMDS=y/# CPTCFG_IWLMVM_VENDOR_CMDS is not set/’ .config
make -j4
sudo make install

Clone the linux-firmware git repo and copy relevant files to the system:

cd ~
git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
cd linux-firmware
sudo cp iwlwifi-9260* /lib/firmware

sudo reboot

3.Install BTUSB from jetson-nano-kernel/install-btusb.sh at master · yoffy/jetson-nano-kernel · GitHub

Reboot and you should have both WIFI and Bluetooth working.

Enjoy!

1 Like