Changeset 101200 in vbox for trunk/src/VBox/Main/xml
- Timestamp:
- Sep 20, 2023 2:14:26 PM (20 months ago)
- svn:sync-xref-src-repo-rev:
- 159173
- Location:
- trunk/src/VBox/Main/xml
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xml/Settings.cpp
r101199 r101200 5636 5636 else if (strGraphicsControllerType == "VBOXSVGA") 5637 5637 type = GraphicsControllerType_VBoxSVGA; 5638 else if (strGraphicsControllerType == "QEMURAMFB") 5639 type = GraphicsControllerType_QemuRamFB; 5638 5640 else if (strGraphicsControllerType == "NONE") 5639 5641 type = GraphicsControllerType_Null; … … 7484 7486 case GraphicsControllerType_VMSVGA: pcszGraphics = "VMSVGA"; break; 7485 7487 case GraphicsControllerType_VBoxSVGA: pcszGraphics = "VBoxSVGA"; break; 7488 case GraphicsControllerType_QemuRamFB: pcszGraphics = "QemuRamFB"; break; 7486 7489 default: /*case GraphicsControllerType_Null:*/ pcszGraphics = "None"; break; 7487 7490 } … … 9392 9395 if (m->sv < SettingsVersion_v1_20) 9393 9396 { 9394 // VirtualBox 7.1 (settings v1.20) adds support for different VM platforms. 9395 if ( hardwareMachine.platformSettings.architectureType != PlatformArchitecture_None 9396 && hardwareMachine.platformSettings.architectureType != PlatformArchitecture_x86) 9397 // VirtualBox 7.1 (settings v1.20) adds support for different VM platforms and the QEMU RAM based framebuffer device. 9398 if ( ( hardwareMachine.platformSettings.architectureType != PlatformArchitecture_None 9399 && hardwareMachine.platformSettings.architectureType != PlatformArchitecture_x86) 9400 || hardwareMachine.graphicsAdapter.graphicsControllerType == GraphicsControllerType_QemuRamFB) 9397 9401 { 9398 9402 /* Note: The new chipset type ARMv8Virtual implies setting the platform architecture type to ARM. */ -
trunk/src/VBox/Main/xml/VirtualBox-settings.xsd
r101035 r101200 290 290 <xsd:enumeration value="VMSVGA"/> 291 291 <xsd:enumeration value="VBoxSVGA"/> 292 <xsd:enumeration value="QemuRamFB"/> 292 293 </xsd:restriction> 293 294 </xsd:simpleType>
Note:
See TracChangeset
for help on using the changeset viewer.