mirror of
https://github.com/AuxXxilium/r8125.git
synced 2024-11-23 23:11:01 +07:00
834fa240ae
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
25 lines
501 B
Bash
25 lines
501 B
Bash
#!/bin/bash
|
|
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "You must run this with superuser priviliges. Try \"sudo ./dkms-remove.sh\"" 2>&1
|
|
exit 1
|
|
else
|
|
echo "About to run dkms removal steps..."
|
|
fi
|
|
|
|
DRV_DIR="$(pwd)"
|
|
DRV_NAME=r8125
|
|
DRV_VERSION=9.011.01
|
|
|
|
dkms remove ${DRV_NAME}/${DRV_VERSION} --all
|
|
rm -rf /usr/src/${DRV_NAME}-${DRV_VERSION}
|
|
|
|
RESULT=$?
|
|
if [[ "$RESULT" != "0" ]]; then
|
|
echo "Error occurred while running dkms remove." 2>&1
|
|
else
|
|
echo "Finished running dkms removal steps."
|
|
fi
|
|
|
|
exit $RESULT
|