儲存庫 vbox 的更動 103109
- 時間撮記:
- 2024-1-29 下午04:19:13 (10 月 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/src-server/UnattendedImpl.cpp
r102534 r103109 2661 2661 VBOXOSTYPE const enmMachineOSType = idxMachineOSType < Global::cOSTypes 2662 2662 ? Global::sOSTypes[idxMachineOSType].osType : VBOXOSTYPE_Unknown; 2663 uint32_t const osHint = idxMachineOSType < Global::cOSTypes 2663 #if 0 /** @todo r=bird: Unused, see below. */ 2664 uint32_t const fMachineOsHints = idxMachineOSType < Global::cOSTypes 2664 2665 ? Global::sOSTypes[idxMachineOSType].osHint : 0; 2666 #endif 2667 2665 2668 /* 2666 2669 * Check that the detected guest OS type for the ISO is compatible with … … 2674 2677 || (enmMachineOSType & VBOXOSTYPE_ArchitectureMask) != VBOXOSTYPE_x64)) 2675 2678 return setError(E_FAIL, tr("The supplied ISO file is incompatible with the guest OS type of the VM: CPU architecture mismatch")); 2676 } 2677 2679 2680 /** @todo check BIOS/EFI requirement */ 2681 } 2682 2683 #if 0 /** @todo r=bird: this is misleading, since it is checking the machine. */ 2678 2684 /* We don't support guest OSes w/ EFI, as that requires UDF remastering support we don't have yet. */ 2679 if ( ( osHint& VBOXOSHINT_EFI)2685 if ( (fMachineOsHints & VBOXOSHINT_EFI) 2680 2686 && (enmIsoOSType & VBOXOSTYPE_ArchitectureMask) != VBOXOSTYPE_arm64) 2681 return setError(E_FAIL, tr("The detected guest OS type requires EFI to boot and therefore is not supported yet")); 2687 return setError(E_FAIL, tr("The machine is configured with EFI which is currently not supported by unatteded installation")); 2688 #endif 2682 2689 2683 2690 /* Set the guest additions install package name. */
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器