Changeset 31209 in vbox
- Timestamp:
- Jul 29, 2010 1:11:00 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64211
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r30451 r31209 1234 1234 1235 1235 /* 1236 * Call reset to set values and stuff.1237 */1238 pcbiosReset(pDevIns);1239 1240 /*1241 1236 * Get the LAN boot ROM file name. 1242 1237 */ … … 1346 1341 rc = PDMDevHlpROMRegister(pDevIns, VBOX_LANBOOT_SEG << 4, cbLanBootBinary, pu8LanBootBinary, 1347 1342 PGMPHYS_ROM_FLAGS_SHADOWED, "Net Boot ROM"); 1348 if (RT_SUCCESS(rc)) 1349 { 1350 rc = PDMDevHlpROMProtectShadow(pDevIns, VBOX_LANBOOT_SEG << 4, cbLanBootBinary, PGMROMPROT_READ_RAM_WRITE_RAM); 1351 AssertRCReturn(rc, rc); 1352 rc = PDMDevHlpPhysWrite(pDevIns, VBOX_LANBOOT_SEG << 4, pu8LanBootBinary, cbLanBootBinary); 1353 AssertRCReturn(rc, rc); 1354 } 1343 AssertRCReturn(rc, rc); 1355 1344 } 1356 1345 … … 1362 1351 pThis->uBootDelay = 15; 1363 1352 1364 return rc; 1353 /* 1354 * Call reset plant tables and shadow the PXE ROM. 1355 */ 1356 pcbiosReset(pDevIns); 1357 1358 return VINF_SUCCESS; 1365 1359 } 1366 1360
Note:
See TracChangeset
for help on using the changeset viewer.