summary refs log tree commit diff
path: root/modules/testing/test-instrumentation.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-04-08 14:42:35 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-04-08 14:42:35 +0000
commit97a37f7c12db198152cc37c637e59b04f3227571 (patch)
tree243b200b9da832757ae68db51409dbf189a95f23 /modules/testing/test-instrumentation.nix
parent05ff7baf488c9d7d4f7aff4850caffe91e092f44 (diff)
downloadnixpkgs-97a37f7c12db198152cc37c637e59b04f3227571.tar
nixpkgs-97a37f7c12db198152cc37c637e59b04f3227571.tar.gz
nixpkgs-97a37f7c12db198152cc37c637e59b04f3227571.tar.bz2
nixpkgs-97a37f7c12db198152cc37c637e59b04f3227571.tar.lz
nixpkgs-97a37f7c12db198152cc37c637e59b04f3227571.tar.xz
nixpkgs-97a37f7c12db198152cc37c637e59b04f3227571.tar.zst
nixpkgs-97a37f7c12db198152cc37c637e59b04f3227571.zip
* "stage1panic" -> "stage1panic=1" to get rid of a harmless warning.
svn path=/nixos/trunk/; revision=26756
Diffstat (limited to 'modules/testing/test-instrumentation.nix')
-rw-r--r--modules/testing/test-instrumentation.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/testing/test-instrumentation.nix b/modules/testing/test-instrumentation.nix
index 991c5d263a5..d1b3fe154d5 100644
--- a/modules/testing/test-instrumentation.nix
+++ b/modules/testing/test-instrumentation.nix
@@ -84,7 +84,7 @@ in
     # Panic if an error occurs in stage 1 (rather than waiting for
     # user intervention). 
     boot.kernelParams =
-      [ "console=tty1" "console=ttyS0" "panic=1" "stage1panic" ];
+      [ "console=tty1" "console=ttyS0" "panic=1" "stage1panic=1" ];
 
     # `xwininfo' is used by the test driver to query open windows.
     environment.systemPackages = [ pkgs.xorg.xwininfo ];