Last active
October 5, 2025 07:15
-
-
Save azenla/64b2503a41eef7f1514316bdf885b53a to your computer and use it in GitHub Desktop.
Sprout Bootloader YAML Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 1 | |
| values: | |
| default-options: "tty=hvc0" | |
| phases: | |
| startup: | |
| - actions: ["welcome"] | |
| actions: | |
| welcome: | |
| print: | |
| text: "Welcome to Sprout!" | |
| chainload-kernel: | |
| chainload: | |
| path: "$path" | |
| options: | |
| - "$default-options" | |
| generators: | |
| kernels: | |
| matrix: | |
| entry: | |
| title: "Boot Kernel $name" | |
| values: | |
| path: "\\EFI\\BOOT\\$name" | |
| actions: ["chainload-kernel"] | |
| values: | |
| name: ["kernel.efi"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment