fix: run e2fsck before restart boot, set panic=0 to prevent reboot loops

This commit is contained in:
Harivansh Rathi 2026-04-11 14:41:02 +00:00
parent 2cef6aace5
commit 73cdf2eb74
3 changed files with 7 additions and 1 deletions

View file

@ -16,7 +16,7 @@ import (
)
const (
defaultGuestKernelArgs = "console=ttyS0 reboot=k"
defaultGuestKernelArgs = "console=ttyS0 reboot=k panic=0"
defaultGuestKernelArgsNoPCI = defaultGuestKernelArgs + " pci=off"
defaultGuestMemoryMiB = int64(3072)
defaultGuestVCPUs = int64(2)