Add ReactOS version at the start of the debug log
Modified: trunk/reactos/ntoskrnl/ke/main.c
_____
Modified: trunk/reactos/ntoskrnl/ke/main.c
--- trunk/reactos/ntoskrnl/ke/main.c 2005-05-23 19:30:22 UTC (rev
15480)
+++ trunk/reactos/ntoskrnl/ke/main.c 2005-05-23 20:31:53 UTC (rev
15481)
@@ -288,6 +288,10 @@
/* Initialize HAL */
HalInitSystem (0, (PLOADER_PARAMETER_BLOCK)&KeLoaderBlock);
+ /* Display separator + ReactOS version at start of the debug log */
+
DPRINT1("---------------------------------------------------------------
\n");
+ DPRINT1("ReactOS "KERNEL_VERSION_STR" (Build
"KERNEL_VERSION_BUILD_STR")\n");
+
/* Do general System Startup */
KiSystemStartup(1);
}