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 | |
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...
-rw-r--r-- | images/NEWS | 1 | ||||
-rw-r--r-- | kernel/list_modules.pm | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/images/NEWS b/images/NEWS index 785ba12c7..a5e8201a0 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,4 @@ +- include crc32_generic for f2fs - switch from xz to zstd compression (faster decompression) Version 2.69 - 22 December 2019 by Thomas Backlund 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', |