Changeset 81581 in vbox for trunk/src/VBox/Main/xml/Settings.cpp
- Timestamp:
- Oct 30, 2019 9:45:55 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134326
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r81427 r81581 2539 2539 fLogoFadeOut(true), 2540 2540 fPXEDebugEnabled(false), 2541 fSmbiosUuidLittleEndian(true), 2541 2542 ulLogoDisplayTime(0), 2542 2543 biosBootMenuMode(BIOSBootMenuMode_MessageAndMenu), … … 2556 2557 && fLogoFadeOut 2557 2558 && !fPXEDebugEnabled 2559 && !fSmbiosUuidLittleEndian 2558 2560 && ulLogoDisplayTime == 0 2559 2561 && biosBootMenuMode == BIOSBootMenuMode_MessageAndMenu … … 2572 2574 { 2573 2575 return (this == &d) 2574 || ( fACPIEnabled == d.fACPIEnabled 2575 && fIOAPICEnabled == d.fIOAPICEnabled 2576 && fLogoFadeIn == d.fLogoFadeIn 2577 && fLogoFadeOut == d.fLogoFadeOut 2578 && fPXEDebugEnabled == d.fPXEDebugEnabled 2579 && ulLogoDisplayTime == d.ulLogoDisplayTime 2580 && biosBootMenuMode == d.biosBootMenuMode 2581 && apicMode == d.apicMode 2582 && llTimeOffset == d.llTimeOffset 2583 && strLogoImagePath == d.strLogoImagePath 2584 && strNVRAMPath == d.strNVRAMPath); 2576 || ( fACPIEnabled == d.fACPIEnabled 2577 && fIOAPICEnabled == d.fIOAPICEnabled 2578 && fLogoFadeIn == d.fLogoFadeIn 2579 && fLogoFadeOut == d.fLogoFadeOut 2580 && fPXEDebugEnabled == d.fPXEDebugEnabled 2581 && fSmbiosUuidLittleEndian == d.fSmbiosUuidLittleEndian 2582 && ulLogoDisplayTime == d.ulLogoDisplayTime 2583 && biosBootMenuMode == d.biosBootMenuMode 2584 && apicMode == d.apicMode 2585 && llTimeOffset == d.llTimeOffset 2586 && strLogoImagePath == d.strLogoImagePath 2587 && strNVRAMPath == d.strNVRAMPath); 2585 2588 } 2586 2589 … … 4821 4824 if ((pelmBIOSChild = pelmHwChild->findChildElement("NVRAM"))) 4822 4825 pelmBIOSChild->getAttributeValue("path", hw.biosSettings.strNVRAMPath); 4826 if ((pelmBIOSChild = pelmHwChild->findChildElement("SmbiosUuidLittleEndian"))) 4827 pelmBIOSChild->getAttributeValue("enabled", hw.biosSettings.fSmbiosUuidLittleEndian); 4828 else 4829 hw.biosSettings.fSmbiosUuidLittleEndian = false; /* Default for existing VMs. */ 4823 4830 4824 4831 // legacy BIOS/IDEController (pre 1.7) … … 6293 6300 if (!hw.biosSettings.strNVRAMPath.isEmpty()) 6294 6301 pelmBIOS->createChild("NVRAM")->setAttribute("path", hw.biosSettings.strNVRAMPath); 6302 if (hw.biosSettings.fSmbiosUuidLittleEndian) 6303 pelmBIOS->createChild("SmbiosUuidLittleEndian")->setAttribute("enabled", hw.biosSettings.fSmbiosUuidLittleEndian); 6295 6304 } 6296 6305
Note:
See TracChangeset
for help on using the changeset viewer.