Changeset 5170 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Oct 5, 2007 4:38:54 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 25071
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r4670 r5170 94 94 /** I/O-APIC enabled? */ 95 95 uint8_t u8IOAPIC; 96 /** PXE debug logging enabled? */ 97 uint8_t u8PXEDebug; 96 98 } DEVPCBIOS, *PDEVPCBIOS; 97 99 … … 403 405 pcbiosCmosWrite(pDevIns, 0x38, reg38); 404 406 pcbiosCmosWrite(pDevIns, 0x3c, reg3c); 407 408 /* 409 * PXE debug option. 410 */ 411 pcbiosCmosWrite(pDevIns, 0x3f, pData->u8PXEDebug); 405 412 406 413 /* … … 1109 1116 "DelayBoot\0" 1110 1117 "LanBootRom\0" 1118 "PXEDebug\0" 1111 1119 "UUID\0" 1112 1120 "IOAPIC\0")) … … 1181 1189 if (VBOX_FAILURE(rc)) 1182 1190 return rc; 1191 1192 /* 1193 * Read the PXE debug logging option. 1194 */ 1195 rc = CFGMR3QueryU8(pCfgHandle, "PXEDebug", &pData->u8PXEDebug); 1196 if (rc == VERR_CFGM_VALUE_NOT_FOUND) 1197 pData->u8PXEDebug = 0; 1198 else if (VBOX_FAILURE(rc)) 1199 return PDMDEV_SET_ERROR(pDevIns, rc, 1200 N_("Configuration error: Querying \"PXEDebug\" as integer failed")); 1183 1201 1184 1202 /*
Note:
See TracChangeset
for help on using the changeset viewer.