mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
12 lines
325 B
Go
12 lines
325 B
Go
package api
|
|
|
|
// BootConfig defines a kernel image, kernel options, and initrds to boot.
|
|
type BootConfig struct {
|
|
// the URL of the kernel image
|
|
Kernel string `json:"kernel"`
|
|
// the init RAM filesystem URLs
|
|
Initrd []string `json:"initrd"`
|
|
// command line kernel options
|
|
Cmdline map[string]interface{} `json:"cmdline"`
|
|
}
|