diff options
Diffstat (limited to 'vm/vmimpl/vmimpl.go')
| -rw-r--r-- | vm/vmimpl/vmimpl.go | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/vm/vmimpl/vmimpl.go b/vm/vmimpl/vmimpl.go index 5ec84b35d..10de2ffed 100644 --- a/vm/vmimpl/vmimpl.go +++ b/vm/vmimpl/vmimpl.go @@ -71,16 +71,17 @@ type Infoer interface { type Env struct { // Unique name // Can be used for VM name collision resolution if several pools share global name space. - Name string - OS string // target OS - Arch string // target arch - Workdir string - Image string - SSHKey string - SSHUser string - Timeouts targets.Timeouts - Debug bool - Config []byte // json-serialized VM-type-specific config + Name string + OS string // target OS + Arch string // target arch + Workdir string + Image string + SSHKey string + SSHUser string + Timeouts targets.Timeouts + Debug bool + Config []byte // json-serialized VM-type-specific config + KernelSrc string } // BootError is returned by Pool.Create when VM does not boot. |
