Changeset 101685 in vbox
- Timestamp:
- Oct 31, 2023 12:40:20 PM (15 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestOSTypeImpl.h
r101593 r101685 108 108 HRESULT getRecommendedSecureBoot(BOOL *aRecommendedSecureBoot); 109 109 HRESULT getRecommendedWDDMGraphics(BOOL *aRecommendedWDDMGraphics); 110 HRESULT getGuestAdditionsInstallPackageName(com::Utf8Str &aGuestAdditionsInstallPkgName); 110 111 111 112 … … 115 116 const Utf8Str mID; 116 117 const Utf8Str mDescription; 118 const Utf8Str mGuestAdditionsInstallPackageName; 117 119 const VBOXOSTYPE mOSType; 118 120 const uint32_t mOSHint; -
trunk/src/VBox/Main/src-server/UnattendedInstaller.cpp
r101633 r101685 82 82 || enmDetectedOSType <= VBOXOSTYPE_Debian_latest_arm64)) 83 83 pUinstaller = new UnattendedDebianInstaller(pParent); 84 else if (enmDetectedOSType >= VBOXOSTYPE_Ubuntu && enmDetectedOSType <= VBOXOSTYPE_Ubuntu_latest_x64) 84 else if ( enmDetectedOSType >= VBOXOSTYPE_Ubuntu 85 && ( enmDetectedOSType <= VBOXOSTYPE_Ubuntu_latest_x64 86 || enmDetectedOSType <= VBOXOSTYPE_Ubuntu_latest_arm64)) 85 87 pUinstaller = new UnattendedUbuntuInstaller(pParent); 86 88 else if (enmDetectedOSType >= VBOXOSTYPE_RedHat && enmDetectedOSType <= VBOXOSTYPE_RedHat_latest_x64) … … 103 105 else if (enmDetectedOSType >= VBOXOSTYPE_FedoraCore && enmDetectedOSType <= VBOXOSTYPE_FedoraCore_x64) 104 106 pUinstaller = new UnattendedFedoraInstaller(pParent); 105 else if (enmDetectedOSType >= VBOXOSTYPE_Oracle && enmDetectedOSType <= VBOXOSTYPE_Oracle_latest_x64) 107 else if ( enmDetectedOSType >= VBOXOSTYPE_Oracle 108 && ( enmDetectedOSType <= VBOXOSTYPE_Oracle_latest_x64 109 || enmDetectedOSType <= VBOXOSTYPE_Oracle_latest_arm64)) 106 110 { 107 111 if (RTStrVersionCompare(strDetectedOSVersion.c_str(), "9") >= 0) … … 116 120 pUinstaller = new UnattendedOracleLinux6Installer(pParent); 117 121 } 118 else if (enmDetectedOSType >= VBOXOSTYPE_FreeBSD && enmDetectedOSType <= VBOXOSTYPE_FreeBSD_x64) 122 else if ( enmDetectedOSType >= VBOXOSTYPE_FreeBSD 123 && ( enmDetectedOSType <= VBOXOSTYPE_FreeBSD_x64 124 || enmDetectedOSType <= VBOXOSTYPE_FreeBSD_arm64)) 119 125 pUinstaller = new UnattendedFreeBsdInstaller(pParent); 120 126 #if 0 /* doesn't work, so convert later. */
Note:
See TracChangeset
for help on using the changeset viewer.