Changeset 35400 in vbox for trunk/src/VBox
- Timestamp:
- Jan 4, 2011 11:58:52 AM (14 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r35380 r35400 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 ndef VBOX_WITHOUT_ETHERBOOT26 else if defined(VBOX_WITH_PXE_ROM) && !defined(VBOX_WITHOUT_ETHERBOOT) 27 27 include $(PATH_SUB_CURRENT)/PC/Etherboot-src/Makefile.kmk 28 28 endif … … 248 248 VBoxDD2_LDFLAGS.l4 = -Wl,--no-undefined 249 249 250 ifdef VBOX_WITH_PXE_ROM 251 VBoxDD2_DEFS += VBOX_WITH_PXE_ROM 252 endif 250 253 251 254 # … … 352 355 DevicesR3_DEFS += VBOX_WITH_DMI_OEMSTRINGS 353 356 endif 357 ifdef VBOX_WITH_PXE_ROM 358 DevicesR3_DEFS += VBOX_WITH_PXE_ROM 359 endif 354 360 355 361 ifdef VBOX_WITH_INIP -
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r35353 r35400 1352 1352 if (pThis->pu8LanBoot == NULL) 1353 1353 { 1354 #ifdef VBOX_WITH_PXE_ROM 1354 1355 pu8LanBootBinary = g_abNetBiosBinary; 1355 1356 cbLanBootBinary = g_cbNetBiosBinary; 1357 #endif 1356 1358 } 1357 1359 else -
trunk/src/VBox/Devices/build/VBoxDD2.cpp
r35353 r35400 40 40 (void *)&g_abPcBiosBinary, 41 41 (void *)&g_abVgaBiosBinary, 42 #ifdef VBOX_WITH_PXE_ROM 42 43 (void *)&g_abNetBiosBinary, 44 #endif 43 45 }; 44 46 -
trunk/src/VBox/Devices/build/VBoxDD2.h
r35353 r35400 30 30 extern DECLEXPORT(const unsigned char) g_abVgaBiosBinary[]; 31 31 extern DECLEXPORT(const unsigned) g_cbVgaBiosBinary; 32 # ifdef VBOX_WITH_PXE_ROM 32 33 extern DECLEXPORT(const unsigned char) g_abNetBiosBinary[]; 33 34 extern DECLEXPORT(const unsigned) g_cbNetBiosBinary; 34 extern DECLEXPORT(const unsigned char) g_abVmiBiosBinary[]; 35 extern DECLEXPORT(const unsigned) g_cbVmiBiosBinary; 35 # endif 36 36 #else /* !IN_VBOXDD2 */ 37 37 extern DECLIMPORT(const unsigned char) g_abPcBiosBinary[]; … … 39 39 extern DECLIMPORT(const unsigned char) g_abVgaBiosBinary[]; 40 40 extern DECLIMPORT(const unsigned) g_cbVgaBiosBinary; 41 # ifdef VBOX_WITH_PXE_ROM 41 42 extern DECLIMPORT(const unsigned char) g_abNetBiosBinary[]; 42 43 extern DECLIMPORT(const unsigned) g_cbNetBiosBinary; 43 extern DECLIMPORT(const unsigned char) g_abVmiBiosBinary[]; 44 extern DECLIMPORT(const unsigned) g_cbVmiBiosBinary; 44 # endif 45 45 #endif /* !IN_VBOXDD2 */ 46 46 extern const PDMDEVREG g_DeviceAPIC;
Note:
See TracChangeset
for help on using the changeset viewer.