From 156cd660c51470dacb7f15b740ad18b6e9e8f9d9 Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Sun, 22 Feb 2026 22:59:35 -0500 Subject: [PATCH] fix(steps-guix): remove forced ext3 rootfstype in linux64 handover --- 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 864ba2b0..a9bd1d9b 100644 --- a/steps-guix/jump/linux64.sh +++ b/steps-guix/jump/linux64.sh @@ -24,9 +24,9 @@ sync mkdir -p /etc if [ "${BARE_METAL}" = True ]; then kexec -l "${current_kernel}" \ - --append="root=/dev/sda1 rootfstype=ext3 init=/init rw rootwait" + --append="root=/dev/sda1 init=/init rw rootwait" else kexec -l "${current_kernel}" --console-serial \ - --append="console=ttyS0 root=/dev/sda1 rootfstype=ext3 init=/init rw rootwait" + --append="console=ttyS0 root=/dev/sda1 init=/init rw rootwait" fi kexec -e