Skip to content

Commit

Permalink
Merge aa005a7 into 88aafdf
Browse files Browse the repository at this point in the history
  • Loading branch information
rgooch committed Jul 27, 2019
2 parents 88aafdf + aa005a7 commit a563bfa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hypervisor/manager/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -2819,7 +2819,9 @@ func (vm *vmInfoType) startVm(haveManagerLock bool) error {
cmd.Args = append(cmd.Args, netOptions...)
if vm.manager.ShowVgaConsole {
cmd.Args = append(cmd.Args, "-vga", "std")
} else {
} else if vm.getActiveKernelPath() == "" { // Have a bootloader.
cmd.Args = append(cmd.Args, "-display", "none", "-vga", "std")
} else { // No bootloader: go minimalist.
cmd.Args = append(cmd.Args, "-nographic")
}
for index, volume := range vm.VolumeLocations {
Expand Down

0 comments on commit a563bfa

Please sign in to comment.