mirror of
https://github.com/rancher/os.git
synced 2025-05-18 21:10:18 +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
|
||
|
}
|