summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-08-29 22:11:33 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-08-29 22:11:33 +0000
commit34719e0c4acf62adaea4bc5234f76ba6f6fa0123 (patch)
treea5f37698de2735106ef94198fc0cc6dd077f5046 /modules
parenta242602b40284e16f748372b25f9d4e9b1df26e2 (diff)
downloadnixlib-34719e0c4acf62adaea4bc5234f76ba6f6fa0123.tar
nixlib-34719e0c4acf62adaea4bc5234f76ba6f6fa0123.tar.gz
nixlib-34719e0c4acf62adaea4bc5234f76ba6f6fa0123.tar.bz2
nixlib-34719e0c4acf62adaea4bc5234f76ba6f6fa0123.tar.lz
nixlib-34719e0c4acf62adaea4bc5234f76ba6f6fa0123.tar.xz
nixlib-34719e0c4acf62adaea4bc5234f76ba6f6fa0123.tar.zst
nixlib-34719e0c4acf62adaea4bc5234f76ba6f6fa0123.zip
* On second thought, panicking in stage 1 doesn't help because it
  won't actually cause the instance to be terminated (even if
  "panic=1" were to be set), merely rebooted.

svn path=/nixos/trunk/; revision=23533
Diffstat (limited to 'modules')
-rw-r--r--modules/virtualisation/amazon-image.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/virtualisation/amazon-image.nix b/modules/virtualisation/amazon-image.nix
index ac31f67cf1a5..3a56116eec6c 100644
--- a/modules/virtualisation/amazon-image.nix
+++ b/modules/virtualisation/amazon-image.nix
@@ -71,10 +71,6 @@ with pkgs.lib;
   boot.initrd.kernelModules = [ "xen-blkfront" ];
   boot.kernelModules = [ "xen-netfront" ];
 
-  # Panic if an error occurs in stage 1, because there is nothing anybody can
-  # do about it.
-  boot.kernelParams = [ "stage1panic" ];
-
   # Generate a GRUB menu.  Amazon's pv-grub uses this to boot our kernel/initrd.
   boot.loader.grub.device = "nodev";
   boot.loader.grub.timeout = 0;