archboot/etc/archboot/x86_64-update_installer.conf

35 lines
1.5 KiB
Bash

# Created by Tobias Powalowski <tpowa@archlinux.org>
# SPDX-License-Identifier: GPL-3.0-or-later
# SETUP archboot-cpio.sh parameters, other mkinitcpio parameters are not supported!
# Kernel is defined in this config file
KERNEL="/usr/lib/modules/*/vmlinuz"
HOOKS=(archboot_cache archboot_cache_cleanup archboot_firmware archboot_firmware_cleanup \
archboot_common_modules archboot_block_modules archboot_kms archboot_base_common \
archboot_base_common_cleanup archboot_base archboot_base_cleanup archboot_filesystems \
archboot_filesystems_cleanup archboot_net archboot_net_cleanup archboot_acpi \
archboot_cpufreq archboot_devicemapper archboot_hypervisor archboot_net_common \
archboot_dmidecode archboot_platform archboot_wireless archboot_installer_common \
archboot_installer archboot_installer_cleanup archboot_clock archboot_vconsole \
archboot_motd archboot_mdadm archboot_lvm2 archboot_remote archboot_kexec \
archboot_efibootmgr archboot_pciutils archboot_usbutils archboot_smartmontools \
archboot_licenses archboot_neovim archboot_secure_boot archboot_efivar archboot_lshw)
# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
COMPRESSION="zstd"
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=()
MODULES_DECOMPRESS="no"
# vim: set ft=sh ts=4 sw=4 et: