- Revert 49927 "Update to trunk" as it breaks KsStudio (again)
[reactos.git] / boot / armllb / main.c
index 83c5622..e18ae4c 100755 (executable)
@@ -16,17 +16,17 @@ LlbStartup(IN ULONG Reserved,
     /* Make sure we are booting on the correct kind of machine */
     if (BoardInfo != LlbHwGetBoardType()) while (TRUE);
 
-    /* Initialize hardware components */
-    LlbHwInitialize();
-
     /* Either QEMU or U-Boot itself should send this information */
     LlbEnvParseArguments(Arguments);
     
+    /* Initialize hardware components */
+    LlbHwInitialize();
+
     /* Clean up the screen */
     LlbVideoClearScreen(FALSE);
 
     /* Print header */
-    printf("\nReactOS ARM Low-Level Boot Loader [" __DATE__ " "__TIME__ "]\n");
+    printf("ReactOS ARM Low-Level Boot Loader [" __DATE__ " "__TIME__ "]\n");
     
     /* Boot the OS Loader */
     LlbBoot();