Corrected typo and returned to dkms xpadneo
All checks were successful
bluebuild / Build Custom Image (recipe.yml) (pull_request) Successful in 15m18s

This commit is contained in:
2025-07-12 22:24:58 -04:00
parent 396086b99e
commit 24dca23b66
2 changed files with 20 additions and 6 deletions

View File

@@ -7,5 +7,10 @@ echo "INFO: grab kernel module"
KERNEL_VER=$(ls /lib/modules | head -n 1)
echo $KERNEL_VER
echo "INFO: rebuild akmods"
sudo akmods --kernels $KERNEL_VER
echo "INFO: grab xpad modules"
MODULE_VER=$(ls /usr/src | grep xpadneo | sed 's/-/\//')
echo $MODULE_VER
echo "INFO: build and install xpadneo"
sudo dkms build -m $MODULE_VER -k $KERNEL_VER
sudo dkms install -m $MODULE_VER -k $KERNEL_VER