3
0
Fork 0
forked from mirrors/nixpkgs

nixos/filesystems/ext: Don't try to load ext3 module

This module doesn't exist since v4.3, where the ext3 driver was removed
as ext4.ko can mount ext3 filesystems as well.
This commit is contained in:
Tuomas Tynkkynen 2017-10-07 04:52:52 +03:00
parent 893df17c5a
commit e86b78363d

View file

@ -5,7 +5,8 @@
system.fsPackages = [ pkgs.e2fsprogs ];
boot.initrd.availableKernelModules = [ "ext2" "ext3" "ext4" ];
# As of kernel 4.3, there is no separate ext3 driver (they're also handled by ext4.ko)
boot.initrd.availableKernelModules = [ "ext2" "ext4" ];
boot.initrd.extraUtilsCommands =
''