From 2e369c2a58061b4c1e154b544703d2e486ad9622 Mon Sep 17 00:00:00 2001 From: brektrou <48123110+brektrou@users.noreply.github.com> Date: Fri, 1 Mar 2019 23:18:03 +0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a032eac..c120b7a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ To make use of the **DKMS** feature with this project, do the following: ``` DRV_NAME=rtl8821CU DRV_VERSION=5.4.1 -sudo cp -r ${DRV_NAME} /usr/src/${DRV_NAME}-${DRV_VERSION} +sudo cp -r ~/build/${DRV_NAME} /usr/src/${DRV_NAME}-${DRV_VERSION} sudo dkms add -m ${DRV_NAME} -v ${DRV_VERSION} sudo dkms build -m ${DRV_NAME} -v ${DRV_VERSION} sudo dkms install -m ${DRV_NAME} -v ${DRV_VERSION} @@ -38,7 +38,7 @@ sudo dkms remove ${DRV_NAME}/${DRV_VERSION} --all ## Build and install without DKMS Use following commands: ``` -cd rtl8821CU +cd ~/build/rtl8821CU make sudo make install ```