From 80f406163f22e4d091a1d9737fca20d17c97520e Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Wed, 18 Mar 2026 08:40:57 -0400 Subject: [PATCH] fix(linux64-jump): disable console blanking after kexec --- steps-guix/jump/linux64.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steps-guix/jump/linux64.sh b/steps-guix/jump/linux64.sh index 6807a849..d1f49ef2 100644 --- a/steps-guix/jump/linux64.sh +++ b/steps-guix/jump/linux64.sh @@ -21,10 +21,10 @@ sync mkdir -p /etc if [ "${BARE_METAL}" = True ]; then kexec -l "${current_kernel}" \ - --append="root=/dev/sda1 init=/init rw rootwait" + --append="root=/dev/sda1 init=/init rw rootwait consoleblank=0" else kexec -l "${current_kernel}" --console-serial \ - --append="console=ttyS0 root=/dev/sda1 init=/init rw rootwait" + --append="console=ttyS0 root=/dev/sda1 init=/init rw rootwait consoleblank=0" fi sync echo u > /proc/sysrq-trigger || true