64ec079347
We don't build 32-bit ARM or x86 images in Fedora any more (we stopped doing x86 images after F30, we are no longer doing 32-bit ARM images after F36). So we can drop all of this stuff from master branch at least. Signed-off-by: Stephen Gallagher <sgallagh@redhat.com>
25 lines
753 B
Cheetah
25 lines
753 B
Cheetah
## livemedia-creator: Install packages needed for iso creation using per-arch templates
|
|
<%page args="basearch"/>
|
|
|
|
## arch-specific bootloader packages
|
|
%if basearch == "aarch64":
|
|
installpkg efibootmgr
|
|
installpkg grub2-efi-aa64-cdboot shim-aa64
|
|
%endif
|
|
%if basearch == "x86_64":
|
|
installpkg grub2-tools-efi
|
|
installpkg efibootmgr
|
|
installpkg shim-x64 grub2-efi-x64-cdboot
|
|
installpkg biosdevname memtest86+
|
|
installpkg grub2-tools grub2-tools-minimal grub2-tools-extra
|
|
installpkg grub2-pc-modules
|
|
%endif
|
|
%if basearch in ("ppc64le"):
|
|
installpkg powerpc-utils
|
|
installpkg grub2-tools grub2-tools-minimal grub2-tools-extra
|
|
installpkg grub2-${basearch}
|
|
%endif
|
|
%if basearch == "s390x":
|
|
installpkg s390utils-base
|
|
%endif
|