From 085cc99ca7d3235c11aed4ec31895a748be91a77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 2 Mar 2023 14:42:04 +0100 Subject: [PATCH] disable kexec-syscall-auto again this breaks on GCP (not enough memory when unpacking initrd on a 32GB instance for a 700MB compressed initrd -> should actually have enough memory) --- nix/kexec-installer/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/kexec-installer/module.nix b/nix/kexec-installer/module.nix index 5f40365..1a48e05 100644 --- a/nix/kexec-installer/module.nix +++ b/nix/kexec-installer/module.nix @@ -68,8 +68,8 @@ in { cat extra.gz >> "''${SCRIPT_DIR}/initrd" rm -r "$INITRD_TMP" + # Dropped --kexec-syscall-auto because it broke on GCP... "$SCRIPT_DIR/kexec" --load "''${SCRIPT_DIR}/bzImage" \ - --kexec-syscall-auto \ --initrd="''${SCRIPT_DIR}/initrd" \ --command-line "init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams}"