fix(steps-guix): remove forced ext3 rootfstype in linux64 handover

This commit is contained in:
vxtls 2026-02-22 22:59:35 -05:00
parent e821a0670c
commit 156cd660c5

View file

@ -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