Files
matchbox/api/boot.go
Dalton Hubble bb976840e1 Documentation: Add group matcher docs, improve docs and examples
* Remove Machine docs since machine resources are no longer used
2016-01-08 12:12:48 -08:00

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"`
}