From 7109132dd61ca65ef0d08e1c7a8b4127d03fd93a Mon Sep 17 00:00:00 2001 From: Micah Abbott Date: Thu, 29 Aug 2024 09:15:45 -0400 Subject: [PATCH] tier-0: add systemd-cryptsetup to initrd dracut modules Fedora 41 appears to require the inclusion of `systemd-cryptsetup` in the initrd in order to unlock LUKS devices at boot. See: #17 Signed-off-by: Micah Abbott --- tier-0/initramfs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tier-0/initramfs.yaml b/tier-0/initramfs.yaml index 353524c..95146e2 100644 --- a/tier-0/initramfs.yaml +++ b/tier-0/initramfs.yaml @@ -14,5 +14,5 @@ postprocess: EOF cat > /usr/lib/dracut/dracut.conf.d/49-bootc-tpm2-tss.conf << 'EOF' # We want this for systemd-cryptsetup tpm2 locking - add_dracutmodules+=" tpm2-tss " + add_dracutmodules+=" systemd-cryptsetup tpm2-tss " EOF