Skip to content

Commit dbf3e60

Browse files
jlebonopenshift-merge-robot
authored andcommitted
mantle/qemu: default to -serial mon:stdio if not redirecting
This restores access to the monitor via `Ctrl-A C` and allows passing through `Ctrl-C` to the guest as before. This used to be what QEMU did by default, but when we added an explicit QMP socket in #1705 it disabled that sugar. Closes: #1725
1 parent 0bb3e29 commit dbf3e60

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mantle/platform/qemu.go

+2
Original file line numberDiff line numberDiff line change
@@ -1307,6 +1307,8 @@ func (builder *QemuBuilder) Exec() (*QemuInstance, error) {
13071307

13081308
if builder.ConsoleFile != "" {
13091309
builder.Append("-display", "none", "-chardev", "file,id=log,path="+builder.ConsoleFile, "-serial", "chardev:log")
1310+
} else {
1311+
builder.Append("-serial", "mon:stdio")
13101312
}
13111313

13121314
// And the custom arguments

0 commit comments

Comments
 (0)