Update install.sh
This commit is contained in:
parent
51143864f8
commit
19f125e0a3
35
install.sh
35
install.sh
|
@ -8,6 +8,8 @@ DRVVER="5.13.3"
|
||||||
DRVSTATUS="installed"
|
DRVSTATUS="installed"
|
||||||
KVER="$(uname -r)"
|
KVER="$(uname -r)"
|
||||||
MODDESTDIR="/lib/modules/${KVER}/kernel/drivers/net/wireless/"
|
MODDESTDIR="/lib/modules/${KVER}/kernel/drivers/net/wireless/"
|
||||||
|
BLFILE="/etc/modprobe.d/realtek.conf"
|
||||||
|
BLDRV="r8188eu"
|
||||||
|
|
||||||
help () {
|
help () {
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -133,6 +135,37 @@ else
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bl_drv () {
|
||||||
|
if [ "$1" = "-i" ]; then
|
||||||
|
if [ ! -z "${BLDRV}" ] && [ "$Error" = "0" ]; then
|
||||||
|
if [ ! -e ${BLFILE} ]; then
|
||||||
|
sudo sh -c "echo 'blacklist ${BLDRV}' > ${BLFILE}"
|
||||||
|
else
|
||||||
|
if [[ ! "$(cat ${BLFILE} | awk '/'${BLDRV}'/ {print}')" =~ "${BLDRV}" ]]; then
|
||||||
|
sudo sh -c "echo 'blacklist ${BLDRV}' >> ${BLFILE}"
|
||||||
|
else
|
||||||
|
echo "Module ${BLDRV} already blacklisted"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
elif [ "$1" = "-u" ]; then
|
||||||
|
if [ ! -z "${BLDRV}" ] && [ "$Error" = "0" ]; then
|
||||||
|
if [ -e ${BLFILE} ]; then
|
||||||
|
if [[ "$(cat ${BLFILE} | awk '/'${BLDRV}'/ {print}')" =~ "${BLDRV}" ]]; then
|
||||||
|
sudo sed -i '/'${BLDRV}'/d' ${BLFILE}
|
||||||
|
if [ ! -s "${BLFILE}" ];then
|
||||||
|
sudo rm -r ${BLFILE}
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Module ${BLDRV} already unblacklisted"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Module ${BLDRV} already unblacklisted"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
if [ -z "$1" ];then
|
if [ -z "$1" ];then
|
||||||
echo "[options] is not defined"
|
echo "[options] is not defined"
|
||||||
help
|
help
|
||||||
|
@ -141,9 +174,11 @@ elif [ "$1" = "-h" ] || [ "$1" = "--help" ];then
|
||||||
elif [ "$1" = "-i" ];then
|
elif [ "$1" = "-i" ];then
|
||||||
echo "Install Realtek ${DRVNAME} Wireless Lan Driver..."
|
echo "Install Realtek ${DRVNAME} Wireless Lan Driver..."
|
||||||
inst_drv
|
inst_drv
|
||||||
|
bl_drv "$1"
|
||||||
elif [ "$1" = "-u" ];then
|
elif [ "$1" = "-u" ];then
|
||||||
echo "Uninstall Realtek ${DRVNAME} Wireless Lan Driver..."
|
echo "Uninstall Realtek ${DRVNAME} Wireless Lan Driver..."
|
||||||
uinst_drv
|
uinst_drv
|
||||||
|
bl_drv "$1"
|
||||||
else
|
else
|
||||||
echo "Incorrect [options] "$1""
|
echo "Incorrect [options] "$1""
|
||||||
help
|
help
|
||||||
|
|
Loading…
Reference in New Issue