From 3397bc6e09336be6c3ac7c55e78050e9cc82dc5a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 27 Oct 2011 17:46:25 +0000 Subject: [PATCH] * Recent kernels need some more modules in the initrd to be able to do CIFS mounts. svn path=/nixos/trunk/; revision=30067 --- modules/virtualisation/qemu-vm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/virtualisation/qemu-vm.nix b/modules/virtualisation/qemu-vm.nix index 95502821e353..7738ce1f2e76 100644 --- a/modules/virtualisation/qemu-vm.nix +++ b/modules/virtualisation/qemu-vm.nix @@ -240,7 +240,7 @@ in # CIFS. Also use paravirtualised network and block devices for # performance. boot.initrd.availableKernelModules = - [ "cifs" "nls_utf8" "hmac" "md4" ] + [ "cifs" "nls_utf8" "hmac" "md4" "ecb" "des_generic" ] ++ optional cfg.writableStore [ "aufs" ]; boot.extraModulePackages =