From 34719e0c4acf62adaea4bc5234f76ba6f6fa0123 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 29 Aug 2010 22:11:33 +0000 Subject: [PATCH] * 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 --- modules/virtualisation/amazon-image.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/virtualisation/amazon-image.nix b/modules/virtualisation/amazon-image.nix index ac31f67cf1a..3a56116eec6 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;