Skip to content

Instantly share code, notes, and snippets.

@Tiryoh
Last active March 22, 2020 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tiryoh/92579a55eba17286855872bcc7fafebd to your computer and use it in GitHub Desktop.
Save Tiryoh/92579a55eba17286855872bcc7fafebd to your computer and use it in GitHub Desktop.
Jetson Nano USB WiFi dongle(Archer T2U Nano) driver installer
#!/usr/bin/env bash
set -eu
sudo apt update
sudo apt install --no-install-recommends dkms
mkdir -p ~/workspace
cd ~/workspace
git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
cd rtl8812AU_8821AU_linux
git checkout 4235b0ec7d7220a6364586d8e25b1e8cb99c36f1
sed -i -e "s/CONFIG_PLATFORM_ARM_JET_NANO = n/CONFIG_PLATFORM_ARM_JET_NANO = y/g" -e "s/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g" Makefile
sudo make -f Makefile.dkms install
@Tiryoh
Copy link
Author

Tiryoh commented Mar 22, 2020

tested on Jetson Nano DevKit B01, L4T R32.3.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment