Skip to content

saranshkarira/rtl8814AU

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rtl8814AU

Realtek 8814AU USB WiFi driver.

Note from Saransh : This is a fork of Thomas Pircher repository. From here on, I'll be developing and maintaining the driver for the coming linux kernel versions. Thanks Thomas for your work and giving me cliffnotes for the future.

Updated with support for kernels >= 4.14 and < 5.3.

Manual build

When building the code, you need to point make to the kernel source and specify the kernel version.

make install KSRC=/path/to/linux-source KVER=x.y.x

This script automates this:

#!/bin/sh
set -e

src=/usr/src/linux
suffix=$(sed -ne 's/^CONFIG_LOCALVERSION="\(.*\)"/\1/p' $src/.config)

ver=$(cd $src; make kernelversion)$suffix
make -j clean all KSRC=$src KVER=$ver
sudo make install KSRC=$src KVER=$ver

DKMS support

From your src dir

sudo cp -R . /usr/src/rtl8814au-4.3.21
sudo dkms build -m rtl8814au -v 4.3.21
sudo dkms install -m rtl8814au -v 4.3.21

This should keep your 8814AU adapter working post kernel updates.

About

Realtek 8814AU USB WiFi driver

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 94.2%
  • C++ 5.0%
  • Other 0.8%