From 8dde0ebc8b3787eea1278784a848f3f17b5189ca Mon Sep 17 00:00:00 2001 From: RICCIARDI-Adrien Date: Sun, 27 Sep 2020 14:41:49 +0200 Subject: [PATCH] Updated README with new DKMS installation/removal. --- README.md | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 8a70ade..a133d27 100644 --- a/README.md +++ b/README.md @@ -58,27 +58,19 @@ Automatically rebuilds and installs on kernel updates. DKMS is in official sourc $ sudo apt-get install build-essential dkms ``` -The driver source must be copied to /usr/src/8812au-4.2.3 - -Then add it to DKMS: - +Install the driver to DKMS with: ```sh -$ sudo dkms add -m 8812au -v 4.2.3 -$ sudo dkms build -m 8812au -v 4.2.3 -$ sudo dkms install -m 8812au -v 4.2.3 +sudo make dkms_install ``` -Check with: -```sh -$ sudo dkms status -``` Automatically load at boot: ```sh $ echo 8812au | sudo tee -a /etc/modules ``` + Eventually remove from DKMS with: ```sh -$ sudo dkms remove -m 8812au -v 4.2.3 --all +$ sudo make dkms_remove ``` ### References