Fix boot with /DEBUGPORT=GDB and /DEBUGPORT=COM1. I don't know why, but this works...

svn path=/trunk/; revision=24223
This commit is contained in:
Saveliy Tretiakov
2006-09-21 07:42:21 +00:00
parent d42d3c29c0
commit 7d1faef9ee
+5 -4
View File
@@ -188,13 +188,14 @@ KdpSerialInit(PKD_DISPATCH_TABLE DispatchTable,
/* Register as a Provider */
InsertTailList(&KdProviders, &DispatchTable->KdProvidersList);
/* Display separator + ReactOS version at start of the debug log */
DPRINT1("---------------------------------------------------------------\n");
DPRINT1("ReactOS "KERNEL_VERSION_STR" (Build "KERNEL_VERSION_BUILD_STR")\n");
}
else if (BootPhase == 2)
{
/* Display separator + ReactOS version at start of the debug log */
DbgPrint("---------------------------------------------------------------\n");
DbgPrint("ReactOS "KERNEL_VERSION_STR" (Build "KERNEL_VERSION_BUILD_STR")\n");
DbgPrint("---------------------------------------------------------------\n");
HalDisplayString("\n Serial debugging enabled\n\n");
}
}