From c807a06045138c7b1aec401b5f2976e2dfdba8a8 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Mon, 18 Mar 2024 10:02:49 +0100 Subject: [PATCH] mkosi-initrd: Tighten up kernel module regexes The previous ones matched more than than the modules we wanted, so let's make sure we only match the ones we want. --- mkosi/resources/mkosi-initrd/mkosi.conf | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/mkosi/resources/mkosi-initrd/mkosi.conf b/mkosi/resources/mkosi-initrd/mkosi.conf index 7a0d7b0e7..aa4071b7c 100644 --- a/mkosi/resources/mkosi-initrd/mkosi.conf +++ b/mkosi/resources/mkosi-initrd/mkosi.conf @@ -37,14 +37,14 @@ WithDocs=no # Make sure various core modules are always included in the initrd. KernelModulesInclude= - btrfs - dm-crypt - dm-integrity - dm-verity - erofs - ext4 - loop - overlay - squashfs - vfat - xfs + /btrfs.ko + /dm-crypt.ko + /dm-integrity.ko + /dm-verity.ko + /erofs.ko + /ext4.ko + /loop.ko + /overlay.ko + /squashfs.ko + /vfat.ko + /xfs.ko -- 2.47.2