[coreboot] r1149 - coreboot-v3/util/x86emu/yabel

svn at coreboot.org svn at coreboot.org
Sat Mar 14 16:43:28 CET 2009


Author: phueper
Date: 2009-03-14 16:43:28 +0100 (Sat, 14 Mar 2009)
New Revision: 1149

Modified:
   coreboot-v3/util/x86emu/yabel/biosemu.c
Log:
use CONFIG_YABEL_DEBUG_FLAGS when setting debug_flags

Signed-off-by: Pattrick Hueper <phueper at hueper.net>
Acked-by: Stefan Reinauer <stepan at coresystems.de>

Modified: coreboot-v3/util/x86emu/yabel/biosemu.c
===================================================================
--- coreboot-v3/util/x86emu/yabel/biosemu.c	2009-03-14 15:43:25 UTC (rev 1148)
+++ coreboot-v3/util/x86emu/yabel/biosemu.c	2009-03-14 15:43:28 UTC (rev 1149)
@@ -67,9 +67,12 @@
 	u8 *rom_image;
 	int i = 0;
 #ifdef DEBUG
-	debug_flags = DEBUG_PRINT_INT10 | DEBUG_PNP | DEBUG_PMM | DEBUG_INTR;
+	debug_flags = 0;//DEBUG_PRINT_INT10 | DEBUG_PNP | DEBUG_INTR | DEBUG_CHECK_VMEM_ACCESS | DEBUG_MEM | DEBUG_IO;
 		// | DEBUG_CHECK_VMEM_ACCESS | DEBUG_MEM | DEBUG_IO;
 		// | DEBUG_TRACE_X86EMU | DEBUG_JMP;
+
+	/* use CONFIG_YABEL_DEBUG_FLAGS, too... */
+	debug_flags |= CONFIG_YABEL_DEBUG_FLAGS;
 #endif
 	if (biosmem_size < MIN_REQUIRED_VMEM_SIZE) {
 		printf("Error: Not enough virtual memory: %x, required: %x!\n",





More information about the coreboot mailing list