6803bae6d4
The difference between the anaconda-install-{env,img}-deps packages is how they treat dependencies. The -env package leaves some dependencies as weak to allow less featureful builds. The -img package hard-requires everything Anaconda could potentially use and ensures everything works. For boot.iso, the latter is preferable. Its usage moves some things from the templates to that package.
189 lines
5.6 KiB
Cheetah
189 lines
5.6 KiB
Cheetah
## lorax template file: populate the ramdisk (runtime image)
|
|
<%page args="basearch, product"/>
|
|
|
|
## anaconda package
|
|
installpkg anaconda anaconda-widgets kexec-tools-anaconda-addon anaconda-install-img-deps
|
|
## Other available payloads
|
|
installpkg dnf
|
|
installpkg rpm-ostree ostree
|
|
## speed up compression on multicore systems
|
|
installpkg pigz
|
|
|
|
## kernel and firmware
|
|
## NOTE: Without explicitly including kernel-modules-extra dnf will choose kernel-debuginfo-*
|
|
## to satify a gfs2-utils kmod requirement
|
|
installpkg kernel kernel-modules kernel-modules-extra
|
|
installpkg grubby
|
|
%if basearch != "s390x":
|
|
## skip the firmware for sound, video, and scanners, none of which will
|
|
## do much good for the installer. Also skip uhd-firmware which is not
|
|
## even a kernel firmware package.
|
|
installpkg --optional *-firmware --except alsa* --except midisport-firmware \
|
|
--except crystalhd-firmware --except ivtv-firmware \
|
|
--except cx18-firmware --except iscan-firmware \
|
|
--except uhd-firmware --except lulzbot-marlin-firmware \
|
|
--except gnome-firmware --except sigrok-firmware
|
|
installpkg b43-openfwwf
|
|
%endif
|
|
|
|
## install all of the glibc langpacks since otherwise we get no locales
|
|
installpkg glibc-all-langpacks
|
|
|
|
## arch-specific packages (bootloaders etc.)
|
|
%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 grubby-deprecated
|
|
installpkg kernel-lpae
|
|
installpkg uboot-tools
|
|
%endif
|
|
%if basearch == "i386":
|
|
installpkg gpart
|
|
%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 == "ppc64le":
|
|
installpkg powerpc-utils lsvpd ppc64-diag
|
|
installpkg grub2-tools grub2-tools-minimal grub2-tools-extra
|
|
installpkg grub2-${basearch}
|
|
%endif
|
|
%if basearch == "s390x":
|
|
installpkg lsscsi s390utils-base s390utils-cmsfs-fuse s390utils-hmcdrvfs
|
|
%endif
|
|
|
|
## yay, plymouth
|
|
installpkg plymouth
|
|
|
|
## extra dracut modules
|
|
installpkg anaconda-dracut dracut-network dracut-config-generic
|
|
|
|
## import-state.service for switchroot
|
|
installpkg initscripts
|
|
|
|
## rescue needs this
|
|
installpkg cryptsetup
|
|
|
|
## rpcbind or portmap needed by dracut nfs module
|
|
installpkg rpcbind
|
|
|
|
## required for dracut
|
|
installpkg kbd kbd-misc
|
|
## required for anaconda-dracut (img-lib etc.)
|
|
installpkg tar xz curl bzip2
|
|
|
|
## basic system stuff
|
|
installpkg systemd-sysv systemd-units
|
|
installpkg rsyslog
|
|
|
|
## xorg/GUI packages
|
|
installpkg xorg-x11-drivers xorg-x11-server-Xorg
|
|
installpkg xorg-x11-server-utils xorg-x11-xauth
|
|
installpkg dbus-x11 metacity gsettings-desktop-schemas
|
|
installpkg nm-connection-editor
|
|
installpkg librsvg2
|
|
|
|
## filesystem tools
|
|
installpkg btrfs-progs jfsutils xfsprogs reiserfs-utils gfs2-utils ntfs-3g ntfsprogs
|
|
installpkg system-storage-manager
|
|
installpkg device-mapper-persistent-data
|
|
installpkg xfsdump
|
|
|
|
## extra storage packages
|
|
# hostname is needed for iscsi to work, see RHBZ#1593917
|
|
installpkg udisks2 udisks2-iscsi hostname
|
|
|
|
## extra libblockdev plugins
|
|
installpkg libblockdev-lvm-dbus
|
|
|
|
## needed for LUKS escrow
|
|
installpkg volume_key
|
|
installpkg nss-tools
|
|
|
|
## blivet-gui-runtime requires PolicyKit-authentication-agent, if we
|
|
## don't tell dnf what to pick it picks lxpolkit, which drags in gtk2
|
|
installpkg polkit-gnome
|
|
|
|
## SELinux support
|
|
installpkg selinux-policy-targeted audit
|
|
|
|
## network tools/servers
|
|
installpkg ethtool openssh-server nfs-utils openssh-clients
|
|
installpkg tigervnc-server-minimal
|
|
installpkg tigervnc-server-module
|
|
installpkg net-tools
|
|
installpkg bridge-utils
|
|
installpkg nmap-ncat
|
|
|
|
## hardware utilities/libraries
|
|
installpkg pciutils usbutils ipmitool
|
|
installpkg mt-st smartmontools
|
|
installpkg hdparm
|
|
%if basearch not in ("aarch64", "ppc64le", "s390x"):
|
|
installpkg pcmciautils
|
|
%endif
|
|
## see bug #1483278
|
|
%if basearch not in ("arm", "armhfp"):
|
|
installpkg libmlx4 rdma-core
|
|
%endif
|
|
installpkg rng-tools
|
|
%if basearch in ("i386", "x86_64", "aarch64"):
|
|
installpkg dmidecode
|
|
%endif
|
|
|
|
|
|
## fonts & themes
|
|
installpkg aajohan-comfortaa-fonts
|
|
installpkg abattis-cantarell-fonts
|
|
installpkg bitmap-fangsongti-fonts
|
|
installpkg dejavu-sans-fonts dejavu-sans-mono-fonts
|
|
installpkg google-noto-sans-cjk-ttc-fonts
|
|
installpkg google-noto-sans-gurmukhi-fonts
|
|
installpkg google-noto-sans-sinhala-vf-fonts
|
|
installpkg jomolhari-fonts
|
|
installpkg khmeros-base-fonts
|
|
installpkg lohit-assamese-fonts
|
|
installpkg lohit-bengali-fonts
|
|
installpkg lohit-devanagari-fonts
|
|
installpkg lohit-gujarati-fonts
|
|
installpkg lohit-kannada-fonts
|
|
installpkg lohit-marathi-fonts
|
|
installpkg lohit-odia-fonts
|
|
installpkg lohit-tamil-fonts
|
|
installpkg lohit-telugu-fonts
|
|
installpkg paktype-naskh-basic-fonts
|
|
installpkg sil-abyssinica-fonts
|
|
installpkg sil-padauk-fonts
|
|
installpkg sil-scheherazade-fonts
|
|
installpkg smc-meera-fonts
|
|
installpkg thai-scalable-waree-fonts
|
|
installpkg xorg-x11-fonts-misc
|
|
|
|
## debugging/bug reporting tools
|
|
installpkg gdb-gdbserver
|
|
installpkg libreport-plugin-bugzilla libreport-plugin-reportuploader
|
|
installpkg fpaste
|
|
installpkg python3-pyatspi
|
|
|
|
## extra tools not required by anaconda
|
|
installpkg nano nano-default-editor
|
|
installpkg vim-minimal strace lsof dump xz less
|
|
installpkg wget rsync bind-utils ftp mtr vconfig
|
|
installpkg icfg spice-vdagent
|
|
installpkg gdisk hexedit sg3_utils
|
|
|
|
## actually install all the requested packages
|
|
run_pkg_transaction
|