Index: /trunk/src/VBox/VMM/Preload/VBoxVMMPreload.cpp
===================================================================
--- /trunk/src/VBox/VMM/Preload/VBoxVMMPreload.cpp	(revision 41074)
+++ /trunk/src/VBox/VMM/Preload/VBoxVMMPreload.cpp	(revision 41075)
@@ -43,11 +43,10 @@
     const char     *pszName;
     bool            fPreload;
-    bool            fVMM;
     void           *pvImageBase;
 } g_aModules[] =
 {
-    { "VMMR0.r0",       true,  true,  NULL },
-    { "VBoxDDR0.r0",    false, true,  NULL },
-    { "VBoxDD2R0.r0",   false, true,  NULL },
+    { "VMMR0.r0",       true,  NULL },
+    { "VBoxDDR0.r0",    true,  NULL },
+    { "VBoxDD2R0.r0",   true,  NULL },
 };
 
@@ -164,9 +163,10 @@
                 return RTMsgErrorExit(RTEXITCODE_FAILURE, "SUPR3LoadModule failed for %s (%s): %s (rc=%Rrc)",
                                       g_aModules[i].pszName, szPath, ErrInfo.Core.pszMsg, rc);
-            if (g_cVerbose > 1)
+            if (g_cVerbose >= 1)
                 RTMsgInfo("Loaded '%s' ('%s') at %p\n", szPath, g_aModules[i].pszName, g_aModules[i].pvImageBase);
         }
     }
 
+    RTStrmFlush(g_pStdOut);
     return RTEXITCODE_SUCCESS;
 }
