1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
#! /usr/bin/env bash
set -eu
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run as root!' >&2
exit 1
fi
if ! [ -x "$(command -v dkms)" ]; then
echo 'This script requires DKMS!' >&2
exit 1
fi
if [ -f /usr/local/bin/xow ]; then
echo 'Please uninstall xow!' >&2
exit 1
fi
if [ -n "${SUDO_USER:-}" ]; then
# Run as normal user to prevent "unsafe repository" error
version=$(sudo -u "$SUDO_USER" git describe --tags 2> /dev/null || echo unknown)
else
version=unknown
fi
# remove "v" prefix
version=${version##v}
source="/usr/src/xone-$version"
log="/var/lib/dkms/xone/$version/build/make.log"
if [ -n "$(dkms status xone)" ]; then
echo -e 'Driver is already installed, uninstalling...\n'
./uninstall.sh --no-firmware
fi
echo "Installing xone $version..."
cp -r . "$source"
find "$source" -type f \( -name dkms.conf -o -name '*.c' \) -exec sed -i "s/#VERSION#/$version/" {} +
# The MAKE line in dkms.conf is required for kernels built using clang.
# Add it if the kernel is built using gcc - i.e. "clang" is in the kernel
# version string.
if [ -n "$(cat /proc/version | grep clang)" ]; then
echo 'MAKE[0]="make V=1 LLVM=1 -C ${kernel_source_dir}'\
'M=${dkms_tree}/${PACKAGE_NAME}/${PACKAGE_VERSION}/build"'\
>> "$source/dkms.conf"
fi
if [ "${1:-}" == --debug ]; then
echo 'ccflags-y += -DDEBUG' >> "$source/Kbuild"
fi
if dkms install -m xone -v "$version" --force; then
# The blacklist should be placed in /usr/local/lib/modprobe.d for kmod 29+
install -D -m 644 install/modprobe.conf /etc/modprobe.d/xone-blacklist.conf
# Avoid conflicts between xpad and xone
if lsmod | grep -q '^xpad'; then
modprobe -r xpad
fi
# Avoid conflicts between mt76x2u and xone
if lsmod | grep -q '^mt76x2u'; then
modprobe -r mt76x2u
fi
else
if [ -r "$log" ]; then
cat "$log" >&2
fi
exit 1
fi
echo -e "\nxone installation finished\n"
|