From: Bernhard Kohl Date: Tue, 16 Nov 2010 12:28:37 +0000 (+0100) Subject: pc: disable the BOCHS BIOS panic port X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0550f9c1b58896a6ca1d1256e26c78f84de2ed55;p=qemu.git pc: disable the BOCHS BIOS panic port 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: Alexander Graf Reviewed-By: Paolo Bonzini Signed-off-by: Bernhard Kohl Signed-off-by: Anthony Liguori --- diff --git a/hw/pc.c b/hw/pc.c index c34d194c25..119c1106c2 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -430,8 +430,8 @@ 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); + /* used to be panic, now unused */ + break; case 0x402: case 0x403: #ifdef DEBUG_BIOS