소스 검색

Updated README with new DKMS installation/removal.

RICCIARDI-Adrien 5 년 전
부모
커밋
8dde0ebc8b
1개의 변경된 파일4개의 추가작업 그리고 12개의 파일을 삭제
  1. 4 12
      README.md

+ 4 - 12
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