* 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
This commit is contained in:
Eelco Dolstra 2010-08-29 22:11:33 +00:00
parent a242602b40
commit 34719e0c4a

View File

@ -71,10 +71,6 @@ with pkgs.lib;
boot.initrd.kernelModules = [ "xen-blkfront" ]; boot.initrd.kernelModules = [ "xen-blkfront" ];
boot.kernelModules = [ "xen-netfront" ]; 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. # Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
boot.loader.grub.device = "nodev"; boot.loader.grub.device = "nodev";
boot.loader.grub.timeout = 0; boot.loader.grub.timeout = 0;