1 Star 0 Fork 0

yeefeiot / rtl8821CU

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
dkms-install.sh 813 Bytes
一键复制 编辑 原始数据 按行查看 历史
ESTBLC 提交于 2019-04-30 19:34 . Add dkms scripts for quick install
#!/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=`pwd`
DRV_NAME=rtl8821CU
DRV_VERSION=5.4.1
cp -r ${DRV_DIR} /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 grep -q -e "^CONFIG_DISABLE_IPV6 = y$" "$DRV_DIR/Makefile" ; then
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
fi
exit $RESULT
1
https://gitee.com/yeefeiot/rtl8821CU.git
git@gitee.com:yeefeiot/rtl8821CU.git
yeefeiot
rtl8821CU
rtl8821CU
master

搜索帮助