Changeset 15963 in vbox for trunk/src/VBox
- Timestamp:
- Jan 15, 2009 12:47:03 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41611
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Builtins.cpp
r15836 r15963 79 79 if (RT_FAILURE(rc)) 80 80 return rc; 81 #ifdef VBOX_WITH_HPET 82 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceHPET); 83 if (RT_FAILURE(rc)) 84 return rc; 85 #endif 81 86 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceMC146818); 82 87 if (RT_FAILURE(rc)) -
trunk/src/VBox/Devices/Builtins.h
r14965 r15963 38 38 extern const PDMDEVREG g_DeviceI8254; 39 39 extern const PDMDEVREG g_DeviceI8259; 40 #ifdef VBOX_WITH_HPET 41 extern const PDMDEVREG g_DeviceHPET; 42 #endif 40 43 extern const PDMDEVREG g_DeviceMC146818; 41 44 extern const PDMDEVREG g_DevicePIIX3IDE; -
trunk/src/VBox/Devices/Makefile.kmk
r15836 r15963 328 328 endif 329 329 330 ifdef VBOX_WITH_HPET 331 DevicesR3_DEFS += VBOX_WITH_HPET 332 DevicesR3_SOURCES += PC/DevHPET.cpp 333 endif 334 330 335 ifdef VBOX_WITH_USB 331 336 DevicesR3_DEFS += VBOX_WITH_USB IN_USB_R3 … … 425 430 endif 426 431 432 ifdef VBOX_WITH_HPET 433 VBoxDDGC_DEFS += VBOX_WITH_HPET 434 VBoxDDGC_SOURCES += PC/DevHPET.cpp 435 endif 436 427 437 ifeq ($(VBOX_LDR_FMT32),pe) 428 438 VBoxDDGC_LDFLAGS = -Entry:vgaMMIOWrite … … 495 505 endif 496 506 507 ifdef VBOX_WITH_HPET 508 VBoxDDR0_DEFS += VBOX_WITH_HPET 509 VBoxDDR0_SOURCES += PC/DevHPET.cpp 510 endif 511 497 512 ifeq ($(VBOX_LDR_FMT32),pe) 498 513 VBoxDDR0_LDFLAGS = -Entry:vgaMMIOWrite … … 501 516 VBoxDDR0_LIBS = $(PATH_LIB)/VMMR0Imp$(VBOX_SUFF_LIB) 502 517 endif 503 504 518 505 519 #
Note:
See TracChangeset
for help on using the changeset viewer.