From 13811e106cc4f4e76d426ef4f9706952ba56cc7c Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 15 Dec 2025 12:25:23 -0800 Subject: [PATCH] _installer_build: skip hfsplus-tools on ELN It's not reliably in ELN (it's sometimes in the buildroot repo but we shouldn't rely on that). We already pass --nomacboot to the actual build command on ELN, so this should be OK. Signed-off-by: Adam Williamson --- tests/_installer_build.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/_installer_build.pm b/tests/_installer_build.pm index 4e446c54..6fe3a2d0 100644 --- a/tests/_installer_build.pm +++ b/tests/_installer_build.pm @@ -16,7 +16,7 @@ sub run { my $arch = get_var("ARCH"); # python3-dnf is for updvercheck.py my $packages = "python3-dnf lorax"; - $packages .= " hfsplus-tools" if ($arch eq "ppc64le" || $arch eq "aarch64"); + $packages .= " hfsplus-tools" if (($arch eq "ppc64le" || $arch eq "aarch64") && lc($version) ne "eln"); assert_script_run "dnf -y install $packages", 120; # this 'temporary file cleanup' thing can actually wipe bits of # the lorax install root while lorax is still running...