Changeset 92539 in vbox
- Timestamp:
- Nov 22, 2021 2:09:47 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148414
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r92421 r92539 384 384 for (ULONG slot = 0; slot < RT_ELEMENTS(mParallelPorts); ++slot) 385 385 mParallelPorts[slot]->i_applyDefaults(); 386 387 /* Enable the VMMDev testing feature for bootsector VMs: */ 388 if (aOsType && aOsType->i_id() == "VBoxBS_64") 389 mData->pMachineConfigFile->mapExtraDataItems["VBoxInternal/Devices/VMMDev/0/Config/TestingEnabled"] = "1"; 386 390 387 391 /* At this point the changing of the current state modification … … 15473 15477 } 15474 15478 } 15479 15480 /* Enable the VMMDev testing feature for bootsector VMs: */ 15481 if (osTypeId == "VBoxBS_64") 15482 { 15483 rc = setExtraData("VBoxInternal/Devices/VMMDev/0/Config/TestingEnabled", "1"); 15484 if (FAILED(rc)) 15485 return rc; 15486 } 15487 15475 15488 return S_OK; 15476 15489 }
Note:
See TracChangeset
for help on using the changeset viewer.