1 Star 0 Fork 0

马健权/rt8812au

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
install.sh 556 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
make &&
cp 8812au.ko /lib/modules/$(uname -r)/kernel/drivers/net/wireless &&
depmod &&
echo "
***Success***
***Module will be activated automatically at next reboot***
" &&
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;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/majq1990/rt8812au.git
git@gitee.com:majq1990/rt8812au.git
majq1990
rt8812au
rt8812au
master

搜索帮助