Index: /trunk/src/VBox/Main/ConsoleImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/ConsoleImpl.cpp	(revision 35170)
+++ /trunk/src/VBox/Main/ConsoleImpl.cpp	(revision 35171)
@@ -336,4 +336,5 @@
     , mfSnapshotFolderSizeWarningShown(false)
     , mfSnapshotFolderExt4WarningShown(false)
+    , mfSnapshotFolderDiskTypeShown(false)
     , mpVmm2UserMethods(NULL)
     , m_pVMMDev(NULL)
Index: /trunk/src/VBox/Main/ConsoleImpl2.cpp
===================================================================
--- /trunk/src/VBox/Main/ConsoleImpl2.cpp	(revision 35170)
+++ /trunk/src/VBox/Main/ConsoleImpl2.cpp	(revision 35171)
@@ -2065,5 +2065,7 @@
                      */
                     static const char *s_pszUsbExtPackName = "Oracle VM VirtualBox Extension Pack";
+# ifdef VBOX_WITH_EXTPACK
                     if (pConsole->mptrExtPackManager->isExtPackUsable(s_pszUsbExtPackName))
+# endif
                     {
                         InsertConfigNode(pDevices, "usb-ehci", &pDev);
@@ -2087,4 +2089,5 @@
                         InsertConfigInteger(pCfg,  "Last",     0);
                     }
+# ifdef VBOX_WITH_EXTPACK
                     else
                     {
@@ -2106,4 +2109,5 @@
                                 s_pszUsbExtPackName);
                     }
+# endif
                 }
 #endif
@@ -2772,4 +2776,9 @@
                  * still don't have a snapshot folder. */
                 (void)RTFsQueryType(utfSnap.c_str(), &enmFsTypeSnap);
+                if (!mfSnapshotFolderDiskTypeShown)
+                {
+                    LogRel(("File system of '%s' (snapshots) is %s\n", utfSnap.c_str(), RTFsTypeName(enmFsTypeSnap)));
+                    mfSnapshotFolderDiskTypeShown = true;
+                }
                 LogRel(("File system of '%s' is %s\n", utfFile.c_str(), RTFsTypeName(enmFsTypeFile)));
                 LONG64 i64Size;
Index: /trunk/src/VBox/Main/include/ConsoleImpl.h
===================================================================
--- /trunk/src/VBox/Main/include/ConsoleImpl.h	(revision 35170)
+++ /trunk/src/VBox/Main/include/ConsoleImpl.h	(revision 35171)
@@ -653,4 +653,6 @@
     /** true if we already showed the snapshot folder ext4/xfs bug warning. */
     bool mfSnapshotFolderExt4WarningShown : 1;
+    /** true if we already listed the disk type of the snapshot folder. */
+    bool mfSnapshotFolderDiskTypeShown : 1;
 
     /** Pointer to the VMM -> User (that's us) callbacks.
