[LinuxBIOS] r2479 - trunk/LinuxBIOSv2/src/devices/emulator

svn at openbios.org svn at openbios.org
Fri Oct 27 20:22:14 CEST 2006


Author: rminnich
Date: 2006-10-27 20:22:13 +0200 (Fri, 27 Oct 2006)
New Revision: 2479

Modified:
   trunk/LinuxBIOSv2/src/devices/emulator/biosemu.c
Log:
This change fixes a long-standing bug, whereby we do not set ret for an
un-inited vector, which we should have done.
Signed-off-by: Ronald G. Minnich <rminnich at gmail.com>

Acked-by: Stefan Reinauer <stepan at coresystems.de>


Modified: trunk/LinuxBIOSv2/src/devices/emulator/biosemu.c
===================================================================
--- trunk/LinuxBIOSv2/src/devices/emulator/biosemu.c	2006-10-27 11:40:01 UTC (rev 2478)
+++ trunk/LinuxBIOSv2/src/devices/emulator/biosemu.c	2006-10-27 18:22:13 UTC (rev 2479)
@@ -122,6 +122,7 @@
 	case 0x6D:
 		if (getIntVect(num) == 0x0000) {
 			printk_debug("un-inited int vector\n");
+			ret = 1;
 		}
 		if (getIntVect(num) == 0xFF065) {
 			//ret = int42_handler();





More information about the coreboot mailing list