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:
parent
893df17c5a
commit
e86b78363d
|
@ -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 =
|
||||
''
|
||||
|
|
Loading…
Reference in a new issue