Files
sprout/hack/dev/configs/all.sprout.toml

31 lines
621 B
TOML
Raw Normal View History

2025-10-26 23:59:50 -04:00
version = 1
[options]
default-entry = "kernel"
2025-10-26 23:59:50 -04:00
[extractors.boot.filesystem-device-match]
has-item = "\\vmlinuz"
2025-10-26 23:59:50 -04:00
[actions.chainload-kernel]
chainload.path = "$boot\\vmlinuz"
chainload.options = ["console=hvc0", "overlaytmpfs=yes"]
2025-10-26 23:59:50 -04:00
chainload.linux-initrd = "$boot\\initramfs"
[entries.kernel]
title = "Boot Linux"
actions = ["chainload-kernel"]
[actions.chainload-shell]
chainload.path = "$boot\\EFI\\BOOT\\shell.efi"
[entries.shell]
title = "Boot Shell"
actions = ["chainload-shell"]
[actions.chainload-xen]
chainload.path = "$boot\\EFI\\BOOT\\xen.efi"
[entries.xen]
title = "Boot Xen"
actions = ["chainload-xen"]