1 Star 0 Fork 0

shangwx/rtl88x2eu-20230815

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dkms-install.sh 746 Bytes
一键复制 编辑 原始数据 按行查看 历史
libc0607 提交于 2024-07-23 18:43 . Add dkms build scripts
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "You must run this with superuser priviliges. Try \"sudo ./dkms-install.sh\"" 2>&1
exit 1
else
echo "About to run dkms install steps..."
fi
DRV_DIR=rtl88x2eu
DRV_NAME=rtl88x2eu
DRV_VERSION=5.15.0.1
cp -r $(pwd) /usr/src/${DRV_NAME}-${DRV_VERSION}
dkms add -m ${DRV_NAME} -v ${DRV_VERSION}
dkms build -m ${DRV_NAME} -v ${DRV_VERSION}
dkms install -m ${DRV_NAME} -v ${DRV_VERSION}
RESULT=$?
echo "Finished running dkms install steps."
if echo "net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1" >> /etc/sysctl.conf; then
echo "Disabled IPv6 Successfuly "
sysctl -p
else
echo "Could not disable IPv6"
fi
exit $RESULT
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shangwx/rtl88x2eu-20230815.git
git@gitee.com:shangwx/rtl88x2eu-20230815.git
shangwx
rtl88x2eu-20230815
rtl88x2eu-20230815
5mhz_bw

搜索帮助