From a1a0032fce130de7109d68d9567e91e62f1b8b2b Mon Sep 17 00:00:00 2001 From: Michele Valsecchi Date: Wed, 21 Jan 2026 17:11:01 +0900 Subject: [PATCH] Add SUBDIR mapping for vgpu rhel9.x targets Fixes #494 Signed-off-by: Michele Valsecchi --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ee633db42..0b63882b2 100644 --- a/Makefile +++ b/Makefile @@ -246,6 +246,7 @@ build-vgpuguest-%: DRIVER_TAG = $(DRIVER_VERSION:-grid=) # Source of truth for RHEL and CoreOS compatibility https://access.redhat.com/articles/6907891 build-vgpuguest-rhcos%: SUBDIR = rhel9 +build-vgpuguest-rhel9%: SUBDIR = rhel9 $(VGPU_GUEST_DRIVER_BUILD_TARGETS): @@ -285,6 +286,7 @@ build-vgpuhost-%: DOCKERFILE = $(CURDIR)/vgpu-manager/$(SUBDIR)/Dockerfile # Source of truth for RHEL and CoreOS compatibility https://access.redhat.com/articles/6907891 build-vgpuhost-rhcos%: SUBDIR = rhel9 +build-vgpuhost-rhel9%: SUBDIR = rhel9 $(VGPU_HOST_DRIVER_BUILD_TARGETS): DOCKER_BUILDKIT=1 \