Files
hydro-os/files/scripts/install-xpadneo.sh
Eriq Taing d645f1e5b5
Some checks failed
bluebuild / Build Custom Image (recipe.yml) (pull_request) Failing after 3m30s
Attempt dkms build and install with hard-coded kernel version
2025-06-23 17:10:27 -04:00

17 lines
403 B
Bash

#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
echo "INFO: kernel module"
dnf list --installed | grep kernel.x86_64
echo "INFO: uname -r output:"
uname -r
echo "INFO: xpad modules in /usr/src"
ls /usr/src | grep xpad
echo "INFO: build and install xpadneo"
sudo dkms build -m xpadneo/0.9.7 -k 6.14.11-300
sudo dkms install -m xpadneo/0.9.7 -k 6.14.11-300