Author: eelco Date: 2010-06-20 20:52:42 +0000 (Sun, 20 Jun 2010) New Revision: 22348
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22348&view=rev Modified: nixos/branches/boot-order/modules/testing/test-instrumentation.nix Log: * Increase the CIFS timeout here as well. Changes: Modified: nixos/branches/boot-order/modules/testing/test-instrumentation.nix =================================================================== --- nixos/branches/boot-order/modules/testing/test-instrumentation.nix 2010-06-20 20:52:08 UTC (rev 22347) +++ nixos/branches/boot-order/modules/testing/test-instrumentation.nix 2010-06-20 20:52:42 UTC (rev 22348) @@ -81,6 +81,13 @@ networking.defaultGateway = mkOverride 200 {} ""; networking.nameservers = mkOverride 200 {} [ ]; + # Apply a patch to the kernel to increase the 15s CIFS timeout. + nixpkgs.config.packageOverrides = pkgs: { + linux = pkgs.linux.override (orig: { + kernelPatches = orig.kernelPatches ++ [ pkgs.kernelPatches.cifs_timeout ]; + }); + }; + }; } _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
