From 8138feb630807e3182aaea97b0273fc4bce50c19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 31 Aug 2011 21:20:48 +0000 Subject: [PATCH] The VM did not want to mount the CIFS without these two modules available in stage1. svn path=/nixos/trunk/; revision=28947 --- 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 8881cc5304d..93212af2dfc 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" ] + [ "cifs" "nls_utf8" "hmac" "md4" ] ++ optional cfg.writableStore [ "aufs" ]; boot.extraModulePackages =