From 8b858666767fe53c160d15727bb6c553d2f95dbb Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Mon, 12 Aug 2019 11:38:26 +0200 Subject: [PATCH] mxgrub: Change crashkernel size to 512MB Systems like "kreios" panic during initialization of the panic kernel with out of memory. Double the memory size for the panic kernel. This is an experiment, because for systems with <8GB we surly don't want to reserve 512 MB. --- mxgrub/mxgrub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mxgrub/mxgrub b/mxgrub/mxgrub index 626b2ab..7e96993 100755 --- a/mxgrub/mxgrub +++ b/mxgrub/mxgrub @@ -239,7 +239,7 @@ sub scan_mariux { } } -our $KERNEL_PARAMETER="ro crashkernel=256M console=ttyS0,115200n8 console=ttyS1,115200n8 console=tty0 init=/bin/systemd audit=0"; +our $KERNEL_PARAMETER="ro crashkernel=512M console=ttyS0,115200n8 console=ttyS1,115200n8 console=tty0 init=/bin/systemd audit=0"; sub update_grub_cfg { my $kernellist='';