From ffe4dc9e4eefe8cd3945f983b6cd1ab1c9851158 Mon Sep 17 00:00:00 2001 From: Charles Betros Date: Thu, 22 Oct 2020 13:54:33 -0500 Subject: [PATCH] Fix isofile typo --- source/Cosmos.Debug.Hosts/Qemu.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Cosmos.Debug.Hosts/Qemu.cs b/source/Cosmos.Debug.Hosts/Qemu.cs index 821a50027..5ba507f14 100644 --- a/source/Cosmos.Debug.Hosts/Qemu.cs +++ b/source/Cosmos.Debug.Hosts/Qemu.cs @@ -37,7 +37,7 @@ namespace Cosmos.Debug.Hosts if (aParams.ContainsKey("ISOFile")) { - _isoFile = aParams["IOSFile"]; + _isoFile = aParams["ISOFile"]; } _debugPortString = "Cosmos\\Serial"; @@ -59,10 +59,10 @@ namespace Cosmos.Debug.Hosts if (!string.IsNullOrWhiteSpace(_debugPortString)) { - xQemuArguments += $" -chardev pipe,path=\\\\Cosmos\\Serial,id=Cosmos -device isa-serial,chardev=Cosmos"; + xQemuArguments += @" -chardev console,id=CosmosConsole -chardev pipe,path=\Cosmos\Serial,id=Cosmos -device isa-serial,chardev=Cosmos"; } - xQemuArguments += " -boot d"; + xQemuArguments += " -vga std -boot d -no-shutdown -no-reboot"; qemuStartInfo.Arguments = xQemuArguments; if (RedirectOutput)