Changeset 15963 in vbox
- Timestamp:
- Jan 15, 2009 12:47:03 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r15953 r15963 388 388 # Enable LsiLogic SCSI host adapter 389 389 VBOX_WITH_LSILOGIC = 1 390 # Enable HPET device 391 #VBOX_WITH_HPET = 1 390 392 # Enable SCSI drivers 391 393 VBOX_WITH_SCSI = 1 -
trunk/include/VBox/log.h
r14438 r15963 96 96 /** Floppy Controller Device group. */ 97 97 LOG_GROUP_DEV_FDC, 98 /** High Precision Event Timer Device group. */ 99 LOG_GROUP_DEV_HPET, 98 100 /** IDE Device group. */ 99 101 LOG_GROUP_DEV_IDE, … … 351 353 "DEV_E1000", \ 352 354 "DEV_FDC", \ 355 "DEV_HPET", \ 353 356 "DEV_IDE", \ 354 357 "DEV_INIP", \ -
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.