Changeset 41752 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 15, 2012 11:38:51 AM (13 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r41636 r41752 24 24 if defined(VBOX_WITH_INTEL_PXE) || defined(VBOX_ONLY_EXTPACKS) 25 25 include $(PATH_SUB_CURRENT)/PC/PXE/Makefile.kmk 26 else if defined(VBOX_WITH_PXE_ROM) && !defined(VBOX_WITHOUT_ETHERBOOT) 27 include $(PATH_SUB_CURRENT)/PC/Etherboot-src/Makefile.kmk 26 else if defined(VBOX_WITH_PXE_ROM) 27 if !defined(VBOX_WITHOUT_ETHERBOOT) 28 include $(PATH_SUB_CURRENT)/PC/Etherboot-src/Makefile.kmk 29 endif 30 if !defined(VBOX_WITHOUT_IPXE) 31 include $(PATH_SUB_CURRENT)/PC/ipxe/Makefile.kmk 32 endif 28 33 endif 29 34 if !defined(VBOX_ONLY_EXTPACKS) # Goes on almost to the end of the file. … … 254 259 Graphics/DevVGA_VDMA.cpp 255 260 endif 256 261 257 262 ifdef VBOX_VDMA_WITH_WATCHDOG 258 263 VBoxDD_DEFS += VBOX_VDMA_WITH_WATCHDOG … … 903 908 $(PATH_STAGE_LIB)/PcBiosBin$(VBOX_SUFF_LIB) \ 904 909 $(PATH_STAGE_LIB)/VgaBiosBin$(VBOX_SUFF_LIB) \ 905 $(if $(VBOX_WITH_PXE_ROM),$( PATH_STAGE_LIB)/NetBiosBin$(VBOX_SUFF_LIB),) \910 $(if $(VBOX_WITH_PXE_ROM),$(if $(VBOX_WITHOUT_IPXE),(PATH_STAGE_LIB)/NetBiosBin$(VBOX_SUFF_LIB),$(PATH_STAGE_LIB)/iPxeBiosBin$(VBOX_SUFF_LIB)),) \ 906 911 $(LIB_VMM) \ 907 912 $(LIB_RUNTIME) -
trunk/src/VBox/Devices/build/VBoxDD2.cpp
r35400 r41752 1 /* $Id 1 /* $Id$ */ 2 2 /** @file 3 3 * VBoxDD2 - Built-in drivers & devices part 2. … … 7 7 8 8 /* 9 * Copyright (C) 2006-201 0Oracle Corporation9 * Copyright (C) 2006-2012 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Devices/build/VBoxDD2.h
r35400 r41752 7 7 8 8 /* 9 * Copyright (C) 2006-201 0Oracle Corporation9 * Copyright (C) 2006-2012 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as
Note:
See TracChangeset
for help on using the changeset viewer.