From 15d13fdfd7303a8c39a6f42c7d94f9bcdb206a24 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Jul 2016 04:12:42 +0100 Subject: [PATCH] Fix aarch64 installs due to missing/unsupported packages With commit fe17f97 changing the default from optional to required there's a few packages that aren't currently supported on aarch64 that break the compose. In particular aarch64 currently still doesn't have kexec, with luck that might change in the F-25 cycle but until it does we need to have an exception. Signed-off-by: Peter Robinson --- share/templates.d/99-generic/runtime-install.tmpl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/share/templates.d/99-generic/runtime-install.tmpl b/share/templates.d/99-generic/runtime-install.tmpl index 5db1f819..2dfeeb2a 100644 --- a/share/templates.d/99-generic/runtime-install.tmpl +++ b/share/templates.d/99-generic/runtime-install.tmpl @@ -3,7 +3,9 @@ ## anaconda package installpkg anaconda anaconda-widgets +%if basearch != "aarch64": installpkg kexec-tools-anaconda-addon +%endif ## anaconda deps that aren't in the RPM installpkg tmux ## for anaconda crash handling @@ -115,8 +117,9 @@ installpkg bridge-utils ## hardware utilities/libraries installpkg pciutils usbutils ipmitool installpkg mt-st smartmontools -%if basearch != "s390x": -installpkg hdparm pcmciautils +installpkg hdparm +%if basearch not in ("aarch64", "s390x"): +installpkg pcmciautils %endif installpkg libmlx4 rdma installpkg rng-tools