From 046af078bbc9f72bc996243c65b02d054c6b1133 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 28 May 2010 07:10:17 +0000 Subject: [PATCH] * We don't need Linux 2.6.27 anymore in the tests to get a writable Nix store. AUFS2 on 2.6.32 seems to work. svn path=/nixos/trunk/; revision=22034 --- tests/installer.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/installer.nix b/tests/installer.nix index 883138f1760..a15b5587511 100644 --- a/tests/installer.nix +++ b/tests/installer.nix @@ -76,11 +76,9 @@ let dir = "/tmp/channel"; }; - # Make the Nix store in this VM writable using AUFS. Use Linux - # 2.6.27 because 2.6.32 doesn't work (probably we need AUFS2). - # This should probably be moved to qemu-vm.nix. - boot.kernelPackages = pkgs.linuxPackages_2_6_27; - boot.extraModulePackages = [ config.boot.kernelPackages.aufs ]; + # Make the Nix store in this VM writable using AUFS. This + # should probably be moved to qemu-vm.nix. + boot.extraModulePackages = [ config.boot.kernelPackages.aufs2 ]; boot.initrd.availableKernelModules = [ "aufs" ]; boot.initrd.postMountCommands =