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 <pbrobinson@fedoraproject.org>
This commit is contained in:
parent
d7381949b8
commit
15d13fdfd7
@ -3,7 +3,9 @@
|
|||||||
|
|
||||||
## anaconda package
|
## anaconda package
|
||||||
installpkg anaconda anaconda-widgets
|
installpkg anaconda anaconda-widgets
|
||||||
|
%if basearch != "aarch64":
|
||||||
installpkg kexec-tools-anaconda-addon
|
installpkg kexec-tools-anaconda-addon
|
||||||
|
%endif
|
||||||
## anaconda deps that aren't in the RPM
|
## anaconda deps that aren't in the RPM
|
||||||
installpkg tmux
|
installpkg tmux
|
||||||
## for anaconda crash handling
|
## for anaconda crash handling
|
||||||
@ -115,8 +117,9 @@ installpkg bridge-utils
|
|||||||
## hardware utilities/libraries
|
## hardware utilities/libraries
|
||||||
installpkg pciutils usbutils ipmitool
|
installpkg pciutils usbutils ipmitool
|
||||||
installpkg mt-st smartmontools
|
installpkg mt-st smartmontools
|
||||||
%if basearch != "s390x":
|
installpkg hdparm
|
||||||
installpkg hdparm pcmciautils
|
%if basearch not in ("aarch64", "s390x"):
|
||||||
|
installpkg pcmciautils
|
||||||
%endif
|
%endif
|
||||||
installpkg libmlx4 rdma
|
installpkg libmlx4 rdma
|
||||||
installpkg rng-tools
|
installpkg rng-tools
|
||||||
|
Loading…
Reference in New Issue
Block a user