Files
hydro-os/files/scripts/install-xpadneo.sh
Eriq Taing 1163caaeee
Some checks failed
bluebuild / Build Custom Image (recipe.yml) (pull_request) Failing after 3m41s
Changed from url, added script to make sure dkms module is built and install
2025-06-23 15:47:22 -04:00

17 lines
373 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
sudo dkms install -m xpadneo/0.9.7