Changeset 52473 in vbox
- Timestamp:
- Aug 22, 2014 1:35:55 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r52447 r52473 521 521 # Disk crypt plugin 522 522 VBOX_WITH_PLUGIN_CRYPT = 1 523 # VirtualKD stub/loader device, only relevant on Windows host 524 VBOX_WITH_VIRTUALKD = 1 523 525 ## @} 524 526 -
trunk/src/VBox/Devices/Makefile.kmk
r52249 r52473 5 5 6 6 # 7 # Copyright (C) 2006-201 3Oracle Corporation7 # Copyright (C) 2006-2014 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 514 514 Audio/audiosniffer.c \ 515 515 Audio/noaudio.c \ 516 Audio/filteraudio.c 516 Audio/filteraudio.c 517 517 endif 518 518 … … 698 698 else 699 699 VBoxDD_SOURCES.linux += \ 700 Audio/ossaudio.c 701 endif 702 700 Audio/ossaudio.c 701 endif 702 703 703 ifeq ($(KBUILD_TARGET),os2) 704 704 VBoxDD_SOURCES := $(filter-out Storage/DrvHost%, $(VBoxDD_SOURCES)) … … 714 714 else 715 715 VBoxDD_SOURCES.solaris += \ 716 Audio/solaudio.c 716 Audio/solaudio.c 717 717 endif 718 718 ifdef VBOX_WITH_SOLARIS_OSS … … 742 742 else 743 743 VBoxDD_SOURCES.win += \ 744 Audio/dsoundaudio.c 744 Audio/dsoundaudio.c 745 endif 746 747 ifdef VBOX_WITH_VIRTUALKD 748 VBoxDD_DEFS.win += VBOX_WITH_VIRTUALKD 749 VBoxDD_SOURCES.win += \ 750 Misc/VirtualKD.cpp 745 751 endif 746 752 -
trunk/src/VBox/Devices/build/VBoxDD.cpp
r52249 r52473 5 5 6 6 /* 7 * Copyright (C) 2006-201 2Oracle Corporation7 * Copyright (C) 2006-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 200 200 if (RT_FAILURE(rc)) 201 201 return rc; 202 #ifdef VBOX_WITH_VIRTUALKD 203 rc = pCallbacks->pfnRegister(pCallbacks, &g_DeviceVirtualKD); 204 if (RT_FAILURE(rc)) 205 return rc; 206 #endif 202 207 203 208 return VINF_SUCCESS; -
trunk/src/VBox/Devices/build/VBoxDD.h
r52249 r52473 5 5 6 6 /* 7 * Copyright (C) 2006-201 3Oracle Corporation7 * Copyright (C) 2006-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 85 85 extern const PDMDEVREG g_DevicePciRaw; 86 86 #endif 87 extern const PDMDEVREG g_DeviceGIMDev; 88 #ifdef VBOX_WITH_VIRTUALKD 89 extern const PDMDEVREG g_DeviceVirtualKD; 90 #endif 87 91 88 92 extern const PDMDRVREG g_DrvMouseQueue; … … 148 152 extern const PDMDRVREG g_DrvPciRaw; 149 153 #endif 150 extern const PDMDEVREG g_DeviceGIMDev;151 154 152 155 #ifdef VBOX_WITH_USB
Note:
See TracChangeset
for help on using the changeset viewer.