2023-09-16 11:03:01 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2025-01-28 10:13:30 +01:00
|
|
|
KERNEL_VERSION="$(rpm -q $1 --queryformat '%{VERSION}-%{RELEASE}.%{ARCH}')"
|
2023-09-16 11:03:01 +02:00
|
|
|
|
2025-06-10 09:23:59 +02:00
|
|
|
if ls /tmp/nvidia/*.failed.log >/dev/null 2>&1; then
|
|
|
|
|
cat /tmp/nvidia/*.failed.log
|
|
|
|
|
else
|
|
|
|
|
echo "No error files present. Akmods modules were built successfully."
|
|
|
|
|
fi
|
|
|
|
|
|
2023-09-16 11:03:01 +02:00
|
|
|
rpm-ostree install /tmp/nvidia/*${KERNEL_VERSION}*.rpm
|