From 37e70329a780b15c220d98144ea5f80bcb29519f Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Wed, 24 Aug 2022 12:50:18 +0200 Subject: [PATCH] distro/rhel9: enable hybrid boot for edge-installer Regression introduced when unifying distro versions. --- internal/distro/rhel9/pipelines.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/distro/rhel9/pipelines.go b/internal/distro/rhel9/pipelines.go index 09c7fef3b..69bd32197 100644 --- a/internal/distro/rhel9/pipelines.go +++ b/internal/distro/rhel9/pipelines.go @@ -258,7 +258,7 @@ func edgeInstallerPipelines(t *imageType, customizations *blueprint.Customizatio pipelines = append(pipelines, *anacondaTreePipeline(repos, installerPackages, kernelVer, archName, d.product, d.osVersion, "edge", ksUsers)) isolabel := fmt.Sprintf(d.isolabelTmpl, archName) pipelines = append(pipelines, *bootISOTreePipeline(kernelVer, archName, d.vendor, d.product, d.osVersion, isolabel, kickstartOptions, payloadStages)) - pipelines = append(pipelines, *bootISOPipeline(t.Filename(), d.isolabelTmpl, archName, false)) + pipelines = append(pipelines, *bootISOPipeline(t.Filename(), d.isolabelTmpl, archName, t.Arch().Name() == "x86_64")) return pipelines, nil }