Changeset 81918 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Nov 17, 2019 8:47:37 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134715
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r81917 r81918 1254 1254 "|CheckShutdownStatusForSoftReset" 1255 1255 "|ClearShutdownStatusOnHardReset" 1256 , ""); 1256 , 1257 "NetBoot"); 1257 1258 /* 1258 1259 * Init the data. … … 1339 1340 } 1340 1341 } 1342 1343 /* PXE debug logging option. */ 1344 rc = pHlp->pfnCFGMQueryU8Def(pCfg, "PXEDebug", &pThis->u8PXEDebug, false); 1345 if (RT_FAILURE(rc)) 1346 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Querying \"PXEDebug\" as integer failed")); 1341 1347 1342 1348 … … 1359 1365 NULL, pcbiosSaveExec, NULL, 1360 1366 pcbiosLoadPrep, pcbiosLoadExec, pcbiosLoadDone); 1361 1362 /*1363 * Read the PXE debug logging option.1364 */1365 rc = pHlp->pfnCFGMQueryU8Def(pCfg, "PXEDebug", &pThis->u8PXEDebug, false);1366 if (RT_FAILURE(rc))1367 return PDMDEV_SET_ERROR(pDevIns, rc,1368 N_("Configuration error: Querying \"PXEDebug\" as integer failed"));1369 1367 1370 1368 /* Clear the net boot device list. All bits set invokes old behavior,
Note:
See TracChangeset
for help on using the changeset viewer.