From patchwork Wed Sep 1 14:44:00 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: pc: disable the BOCHS BIOS panic port Date: Wed, 01 Sep 2010 04:44:00 -0000 From: Bernhard Kohl X-Patchwork-Id: 63382 Message-Id: <1283352240-24127-1-git-send-email-bernhard.kohl@nsn.com> To: qemu-devel@nongnu.org Cc: Bernhard Kohl We have an OS which writes to port 0x400 when probing for special hardware. This causes an exit of the VM. With SeaBIOS this port isn't used anyway. Signed-off-by: Bernhard Kohl --- hw/pc.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index 69b13bf..3f81229 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -430,8 +430,6 @@ static void bochs_bios_write(void *opaque, uint32_t addr, uint32_t val) /* Bochs BIOS messages */ case 0x400: case 0x401: - fprintf(stderr, "BIOS panic at rombios.c, line %d\n", val); - exit(1); case 0x402: case 0x403: #ifdef DEBUG_BIOS