From 15465d52db7c9d90d207a74c45b0dbb1e7bb7a13 Mon Sep 17 00:00:00 2001 From: Moowool Date: Fri, 10 Dec 2021 19:13:20 -0500 Subject: [PATCH] Replaced insmod, which doesn't load depedencies, with modprobe, which does --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 9653889..65dd6a2 100755 --- a/install.sh +++ b/install.sh @@ -20,7 +20,7 @@ echo " while true; do read -p "Do you wish to activate the module now? (y/n)" yn case $yn in - [Yy]* ) insmod 8812au.ko && echo "***Module activated***" && break;; + [Yy]* ) modprobe rtl8812au && echo "***Module activated***" && break;; [Nn]* ) exit;; * ) echo "Please answer yes or no.";; esac