New gpu drivers for redhat and ubuntu24 - #4528
Open
rasapala wants to merge 1 commit into
Open
Conversation
rasapala
requested review from
dtrawins and
mzegla
and
a lite review from Copilot
September 9, 2026 11:37
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
The new Ubuntu driver install block needs more robust failure propagation, and the updated default driver versions are currently out of sync with Dockerfile defaults/functional-test pins, risking unvalidated default build configurations.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Updates the default Intel GPU driver stacks used in OVMS Docker image builds for Ubuntu 24.04 and Red Hat (UBI9), and extends the driver-install helper scripts to support the new versions.
Changes:
- Bumped the default
INSTALL_DRIVER_VERSIONfor Ubuntu 24.04 and Red Hat builds in the Makefile. - Added a new Ubuntu driver install case for
26.31.39395(IGC + compute-runtime debs). - Added a new Red Hat driver install case for
25.18.33578(Intel GPU RPMs for rhel/9.6).
File summaries
| File | Description |
|---|---|
| Makefile | Updates default GPU driver versions for ubuntu24 and redhat build flows. |
| install_ubuntu_gpu_drivers.sh | Adds install path for compute-runtime 26.31.39395 on Ubuntu. |
| install_redhat_gpu_drivers.sh | Adds install path for 25.18.33578 RPM stack on RHEL/UBI9. |
Review details
- Files reviewed: 3/3 changed files
- Comments generated: 3
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
170
to
173
| ifeq ($(BASE_OS_TAG),24.04) | ||
| OS=ubuntu24 | ||
| INSTALL_DRIVER_VERSION ?= "26.18.38308" | ||
| INSTALL_DRIVER_VERSION ?= "26.31.39395" | ||
| DLDT_PACKAGE_URL ?= $(DLDT_PACKAGE_URL_UBUNTU24) |
Comment on lines
184
to
188
| BASE_IMAGE_RELEASE=registry.access.redhat.com/ubi9/ubi-minimal:$(BASE_OS_TAG_REDHAT) | ||
| DIST_OS=redhat | ||
| DLDT_PACKAGE_URL ?= $(DLDT_PACKAGE_URL_RHEL) # not used | ||
| INSTALL_DRIVER_VERSION ?= "24.52.32224" | ||
| INSTALL_DRIVER_VERSION ?= "25.18.33578" | ||
| endif |
Comment on lines
+105
to
+114
| "26.31.39395") \ | ||
| mkdir /tmp/gpu_deps && cd /tmp/gpu_deps ; \ | ||
| curl -fL -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.40.13/intel-igc-core-2_2.40.13+22418_amd64.deb; \ | ||
| curl -fL -O https://github.com/intel/intel-graphics-compiler/releases/download/v2.40.13/intel-igc-opencl-2_2.40.13+22418_amd64.deb; \ | ||
| curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/intel-ocloc_26.31.39395.13-0_amd64.deb; \ | ||
| curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/intel-opencl-icd_26.31.39395.13-0_amd64.deb; \ | ||
| curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/libigdgmm12_22.10.0_amd64.deb; \ | ||
| curl -fL -O https://github.com/intel/compute-runtime/releases/download/26.31.39395.13/libze-intel-gpu1_26.31.39395.13-0_amd64.deb; \ | ||
| dpkg -i *.deb && rm -Rf /tmp/gpu_deps ; \ | ||
| ;; \ |
mzegla
approved these changes
Sep 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🛠 Summary
JIRA CVS-193959
🧪 Checklist
``