mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 05:02:05 +00:00
feat: add toys to guest image
This commit is contained in:
parent
1e7829a974
commit
15ad7e6632
2 changed files with 76 additions and 8 deletions
|
|
@ -16,7 +16,7 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
defaultGuestKernelArgs = "console=ttyS0 reboot=k panic=1"
|
||||
defaultGuestKernelArgs = "console=ttyS0 reboot=k"
|
||||
defaultGuestKernelArgsNoPCI = defaultGuestKernelArgs + " pci=off"
|
||||
defaultGuestMemoryMiB = int64(3072)
|
||||
defaultGuestVCPUs = int64(2)
|
||||
|
|
@ -25,6 +25,7 @@ const (
|
|||
defaultVNCPort = uint16(6080)
|
||||
defaultCopyBufferSize = 1024 * 1024
|
||||
defaultGuestDialTimeout = 500 * time.Millisecond
|
||||
defaultGuestStopTimeout = 10 * time.Second
|
||||
)
|
||||
|
||||
type Runtime interface {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue