archboot/etc/archboot/x86_64.conf
Tobias Powalowski eaa1f1a758 reformat configs
2023-04-27 10:42:52 +02:00

32 lines
1.3 KiB
Bash

# Created by Tobias Powalowski <tpowa@archlinux.org>
# SPDX-License-Identifier: GPL-2.0-only
# SETUP archboot-cpio.sh parameters, other mkinitcpio parameters are not supported!
#
# Please change the hooks only if you know what you are doing.
HOOKS=(archboot_firmware archboot_common_modules archboot_base_common archboot_base \
archboot_installer_common archboot_installer archboot_tz archboot_keymap
archboot_acpi archboot_motd archboot_net_common archboot_net archboot_devicemapper \
archboot_mdadm archboot_lvm2 archboot_filesystems archboot_remote \
archboot_cpufreq archboot_kexec archboot_efibootmgr archboot_pciutils \
archboot_usbutils archboot_smartmontools archboot_licenses archboot_wireless \
archboot_wireless_staging archboot_neovim archboot_platform archboot_hypervisor \
archboot_dmidecode 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=(-19)
MODULES_DECOMPRESS="no"
# vim: set ft=sh ts=4 sw=4 et: