mirror of
https://github.com/rancher/os.git
synced 2025-05-17 12:29:34 +00:00
12 lines
223 B
Go
12 lines
223 B
Go
package install
|
|
|
|
type MenuEntry struct {
|
|
Name, BootDir, Version, KernelArgs, Append string
|
|
}
|
|
type BootVars struct {
|
|
BaseName, BootDir string
|
|
Timeout uint
|
|
Fallback int
|
|
Entries []MenuEntry
|
|
}
|