3b8de2a233
In order to support iso creation on multiple arches with the templates we need to be able to select different packages based on arch. lorax-composer uses the arch-specific Lorax templates in order to generate the output iso so this patch: 1. Creates a new template and type to parse it, live-install.tmpl which contains only installpkg commands and #if clauses for arch 2. Removes bootloader related packages from the live-iso.ks 3. Remove dracut-config-rescue exclusion because it can cause problems with some blueprints. 4. Switch logo requirement to system-logos which is satisfied by generic-logos or fedora-logos. This prevents conflicts when a blueprint installs fedora-release-workstation. So in the future, if x86.tmpl, etc. need a new package to support creating the iso it should be added to the correct section in ./share/live/live-install.tmpl
33 lines
978 B
Cheetah
33 lines
978 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
|
|
installpkg uboot-tools
|
|
%endif
|
|
%if basearch in ("arm", "armhfp"):
|
|
installpkg efibootmgr
|
|
installpkg grub2-efi-arm-cdboot
|
|
installpkg uboot-tools
|
|
%endif
|
|
%if basearch == "x86_64":
|
|
installpkg grub2-tools-efi
|
|
installpkg efibootmgr
|
|
installpkg shim-x64 grub2-efi-x64-cdboot
|
|
installpkg shim-ia32 grub2-efi-ia32-cdboot
|
|
%endif
|
|
%if basearch in ("i386", "x86_64"):
|
|
installpkg biosdevname memtest86+ syslinux
|
|
installpkg grub2-tools grub2-tools-minimal grub2-tools-extra
|
|
%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
|