Changeset 101125 in vbox
- Timestamp:
- Sep 15, 2023 12:47:48 PM (19 months ago)
- svn:sync-xref-src-repo-rev:
- 159094
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/man_VBoxManage-modifyvm.xml
r101035 r101125 188 188 <arg choice="plain">ich9</arg> 189 189 <arg choice="plain">piix3</arg> 190 <arg choice="plain">armv8virtual</arg> 190 191 </group></arg> 191 192 <arg>--iommu=<group choice="plain"> … … 1121 1122 </varlistentry> 1122 1123 <varlistentry> 1123 <term><option>--chipset=piix3 | ich9 </option></term>1124 <term><option>--chipset=piix3 | ich9 | armv8virtual</option></term> 1124 1125 <listitem><para> 1125 1126 Specify the Intel chipset for &product-name; to emulate. 1126 The default value is the Intel PIIX3 chipset1127 For the x86 platform, the default value is the Intel PIIX3 chipset. 1127 1128 (<literal>piix3</literal>). 1129 For the ARM platform, the default value is the ARMv8Virtual chipset. 1130 (<literal>armv8virtual</literal>). 1128 1131 </para><para> 1129 1132 Change this value only if you need to relax some of the -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r101035 r101125 1225 1225 pszChipsetType = Info::tr("invalid"); 1226 1226 break; 1227 case ChipsetType_PIIX3: pszChipsetType = "piix3"; break; 1228 case ChipsetType_ICH9: pszChipsetType = "ich9"; break; 1227 case ChipsetType_PIIX3: pszChipsetType = "piix3"; break; 1228 case ChipsetType_ICH9: pszChipsetType = "ich9"; break; 1229 case ChipsetType_ARMv8Virtual: pszChipsetType = "armv8virtual"; break; 1229 1230 default: 1230 1231 AssertFailed(); -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r101035 r101125 3265 3265 } 3266 3266 } 3267 else 3268 { 3269 errorArgument(ModifyVM::tr("Invalid --chipset argument '%s' (valid: piix3,ich9)"), ValueUnion.psz); 3267 else if ( !RTStrICmp(ValueUnion.psz, "armv8") 3268 || !RTStrICmp(ValueUnion.psz, "armv8virtual")) 3269 { 3270 CHECK_ERROR(platform, COMSETTER(ChipsetType)(ChipsetType_ARMv8Virtual)); 3271 } 3272 else 3273 { 3274 errorArgument(ModifyVM::tr("Invalid --chipset argument '%s' (valid: piix3,ich9,armv8virtual)"), 3275 ValueUnion.psz); 3270 3276 hrc = E_FAIL; 3271 3277 } -
trunk/src/VBox/Frontends/VBoxManage/nls/VBoxManageNls_ru.ts
r94643 r101125 11249 11249 <message> 11250 11250 <location filename="../VBoxManageModifyVM.cpp" line="3170"/> 11251 <source>Invalid --chipset argument '%s' (valid: piix3,ich9 )</source>11252 <translation>Недопустимый аргумент к --chipset '%s' (допустимые: piix3,ich9 )</translation>11251 <source>Invalid --chipset argument '%s' (valid: piix3,ich9,armv8virtual)</source> 11252 <translation>Недопустимый аргумент к --chipset '%s' (допустимые: piix3,ich9,armv8virtual)</translation> 11253 11253 </message> 11254 11254 <message> -
trunk/src/VBox/Frontends/VBoxManage/nls/VBoxManageNls_xx_YY.ts
r94643 r101125 9634 9634 <message> 9635 9635 <location filename="../VBoxManageModifyVM.cpp" line="3170"/> 9636 <source>Invalid --chipset argument '%s' (valid: piix3,ich9 )</source>9636 <source>Invalid --chipset argument '%s' (valid: piix3,ich9,armv8virtual)</source> 9637 9637 <translation type="unfinished"></translation> 9638 9638 </message>
Note:
See TracChangeset
for help on using the changeset viewer.