Changeset 23815 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 16, 2009 10:49:09 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53564
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMSettingsSystem.cpp
r23750 r23815 163 163 mCbApic->setChecked (biosSettings.GetIOAPICEnabled()); 164 164 165 /* EFI */ 166 mCbEFI->setChecked (mMachine.GetFirmwareType() == KFirmwareType_EFI); 167 165 168 /* CPU count */ 166 169 bool fVTxAMDVSupported = vboxGlobal().virtualBox().GetHost() … … 224 227 mSlCPU->value() > 1); 225 228 229 /* EFI */ 230 mMachine.SetFirmwareType (mCbEFI->isChecked() ? KFirmwareType_EFI : KFirmwareType_BIOS); 231 226 232 /* RAM size */ 227 233 mMachine.SetCPUCount (mSlCPU->value()); … … 325 331 setTabOrder (mTbBootItemUp, mTbBootItemDown); 326 332 setTabOrder (mTbBootItemDown, mCbApic); 327 328 setTabOrder (mCbApic, mSlCPU); 333 setTabOrder (mCbApic, mCbEFI); 334 335 setTabOrder (mCbEFI, mSlCPU); 329 336 setTabOrder (mSlCPU, mLeCPU); 330 337 setTabOrder (mLeCPU, mCbPae); -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsSystem.ui
r23400 r23815 324 324 <property name="text"> 325 325 <string>Enable &IO APIC</string> 326 </property> 327 </widget> 328 </item> 329 <item row="5" column="1" colspan="2"> 330 <widget class="QCheckBox" name="mCbEFI"> 331 <property name="sizePolicy"> 332 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> 333 <horstretch>0</horstretch> 334 <verstretch>0</verstretch> 335 </sizepolicy> 336 </property> 337 <property name="whatsThis"> 338 <string>When checked, activates support for Extended Firmware Interface (EFI), can be used to boot certain guest OS. Activate only if fully understand consequences.</string> 339 </property> 340 <property name="text"> 341 <string>Enable &EFI (special OSes only)</string> 326 342 </property> 327 343 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.