- Timestamp:
- Apr 27, 2007 11:03:46 AM (18 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Builtins.cpp
r2358 r2390 153 153 if (VBOX_FAILURE(rc)) 154 154 return rc; 155 #ifndef __L4ENV__ 156 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvVmdkHDD); 157 if (VBOX_FAILURE(rc)) 158 return rc; 159 #endif 155 160 #if defined(__DARWIN__) || defined(__LINUX__) || defined(__WIN__) 156 161 rc = pCallbacks->pfnRegister(pCallbacks, &g_DrvHostDVD); -
trunk/src/VBox/Devices/Builtins.h
r2358 r2390 61 61 extern const PDMDRVREG g_DrvVBoxHDD; 62 62 extern const PDMDRVREG g_DrvVD; 63 extern const PDMDRVREG g_DrvVmdkHDD; 63 64 extern const PDMDRVREG g_DrvHostDVD; 64 65 extern const PDMDRVREG g_DrvHostFloppy; -
trunk/src/VBox/Devices/Makefile
r2358 r2390 382 382 Storage/DrvRawImage.cpp \ 383 383 Storage/DrvVD.cpp \ 384 Storage/DrvVmdk.cpp \ 384 385 Storage/VBoxHDD.cpp 385 386 -
trunk/src/VBox/Main/ConsoleImpl.cpp
r2386 r2390 4992 4992 4993 4993 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK(); 4994 #if 0 /* Disabled new virtual hdd containder code for now, causes trouble with vmdks. */ 4994 4995 rc = CFGMR3InsertString(pLunL1, "Driver", "VD"); RC_CHECK(); 4996 #else 4997 rc = CFGMR3InsertString(pLunL1, "Driver", "VmdkHDD"); RC_CHECK(); 4998 #endif 4995 4999 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK(); 4996 5000 hrc = vmdkDisk->COMGETTER(FilePath)(&str); H(); … … 5781 5785 { 5782 5786 Log(("attachToHostInterface: %RTfile %ls\n", maTapFD[slot], tapDeviceName.raw())); 5783 5787 5784 5788 /* 5785 5789 * Here is the right place to communicate the TAP file descriptor and
Note:
See TracChangeset
for help on using the changeset viewer.