update for HEAD-2003091401
[reactos.git] / hal / halx86 / halinit.c
index 5830314..29b1fb0 100644 (file)
@@ -39,6 +39,7 @@ HalInitSystem (ULONG BootPhase,
 {
   if (BootPhase == 0)
     {
+      /* Initialize display and make the screen black */
       HalInitializeDisplay (LoaderBlock);
       
 #ifdef MP
@@ -63,6 +64,11 @@ HalInitSystem (ULONG BootPhase,
       /* Enumerate the devices on the motherboard */
       HalpStartEnumerator();
    }
+  else if (BootPhase == 2)
+    {
+      /* Go to blue screen */
+      HalClearDisplay (0x17); /* grey on blue */
+    }
 
   return TRUE;
 }