Some checks failed
bluebuild / Build Custom Image (recipe.yml) (pull_request) Failing after 3m30s
17 lines
403 B
Bash
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 |