diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-02-14 15:29:27 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-02-14 15:29:27 +0100 |
commit | c8f304cb56d66f1b793d466ca05d772c07f6c19b (patch) | |
tree | 494b8511c130c7ef026d914c15af23510f26a6b0 /kernel | |
parent | 573eae4d62548273ac7925e8b2f3b3a9ecb7cb84 (diff) | |
download | drakx-c8f304cb56d66f1b793d466ca05d772c07f6c19b.tar drakx-c8f304cb56d66f1b793d466ca05d772c07f6c19b.tar.gz drakx-c8f304cb56d66f1b793d466ca05d772c07f6c19b.tar.bz2 drakx-c8f304cb56d66f1b793d466ca05d772c07f6c19b.tar.xz drakx-c8f304cb56d66f1b793d466ca05d772c07f6c19b.zip |
f2fs needs the crc32 module
Also explicitely the F2FS module even though it's already pulled by
dracut basic modules...
Though dracut should have included the crc32 generic module...
It might be explained by the fact that installkernel() only list crc32c
when include_fs_helper_modules() list both crc32 & crc32c in
dracut/modules.d/99fs-lib/module-setup.sh...
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/list_modules.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm index 40fe38028..ac35c8b0c 100644 --- a/kernel/list_modules.pm +++ b/kernel/list_modules.pm @@ -195,7 +195,7 @@ our %l = ( cdrom => [ qw(isofs) ], loopback => [ qw(isofs loop squashfs) ], local => [ - qw(btrfs exfat ext3 ext4 jfs nilfs2 ntfs reiserfs vfat xfs), + qw(btrfs exfat ext3 ext4 f2fs jfs nilfs2 ntfs reiserfs vfat xfs), ], various => [ qw(efivarfs efibc capsule-loader overlay romfs ufs fuse) ], @@ -327,7 +327,7 @@ our %l = ( qw(vboxsf vboxguest vmw_balloon), qw(virtio virtiofs virtio_balloon virtio-console virtio_input virtio_pci virtio_pmem virtio_ring vhost_scsi vhost_vsock hyperv-keyboard), - qw(crc32c crc32c-intel), + qw(crc32c crc32_generic crc32c-intel), 'nvme', qw(evdev), qw(usblp printer), 'floppy', 'microcode', 'usb_common', |