Changeset 16559 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Feb 6, 2009 5:02:23 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 42505
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Builtins.cpp
r16170 r16559 94 94 return rc; 95 95 #endif 96 #ifdef VBOX_WITH_EFI 97 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceEFI); 98 if (RT_FAILURE(rc)) 99 return rc; 100 #endif 96 101 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceMC146818); 97 102 if (RT_FAILURE(rc)) -
trunk/src/VBox/Devices/Builtins.h
r16170 r16559 79 79 extern const PDMDEVREG g_DeviceLPC; 80 80 #endif 81 #ifdef VBOX_WITH_EFI 82 extern const PDMDEVREG g_DeviceEFI; 83 #endif 81 84 82 85 extern const PDMDRVREG g_DrvMouseQueue; -
trunk/src/VBox/Devices/Makefile.kmk
r16344 r16559 36 36 ifndef VBOX_OSE 37 37 include $(PATH_SUB_CURRENT)/Storage/VBoxHDDFormats/Makefile.kmk 38 endif 39 ifdef VBOX_WITH_EFI 40 include $(PATH_SUB_CURRENT)/EFI/Makefile.kmk 38 41 endif 39 42 ifdef VBOX_WITH_INTEL_PXE … … 164 167 ifdef VBOX_WITH_LPC 165 168 VBoxDD_DEFS += VBOX_WITH_LPC 169 endif 170 ifdef VBOX_WITH_EFI 171 VBoxDD_DEFS += VBOX_WITH_EFI 166 172 endif 167 173 ifdef VBOX_WITH_FAULT_INJECTION … … 352 358 endif 353 359 360 ifdef VBOX_WITH_EFI 361 DevicesR3_DEFS += VBOX_WITH_EFI 362 DevicesR3_SOURCES += EFI/DevEFI.cpp 363 endif 364 354 365 ifdef VBOX_WITH_USB 355 366 DevicesR3_DEFS += VBOX_WITH_USB IN_USB_R3
Note:
See TracChangeset
for help on using the changeset viewer.