Changeset 107190 in vbox
- Timestamp:
- Nov 29, 2024 1:36:34 PM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/UnattendedInstaller.cpp
r106458 r107190 81 81 { 82 82 if ( enmDetectedOSType >= VBOXOSTYPE_Debian 83 && ( enmDetectedOSType <= VBOXOSTYPE_Debian_latest_x64 84 || enmDetectedOSType <= VBOXOSTYPE_Debian_latest_arm64)) 83 && enmDetectedOSType <= VBOXOSTYPE_Debian_latest_arm64) 85 84 pUinstaller = new UnattendedDebianInstaller(pParent); 86 85 else if ( enmDetectedOSType >= VBOXOSTYPE_Ubuntu 87 && ( enmDetectedOSType <= VBOXOSTYPE_Ubuntu_latest_x64 88 || enmDetectedOSType <= VBOXOSTYPE_Ubuntu_latest_arm64)) 86 && enmDetectedOSType <= VBOXOSTYPE_Ubuntu_latest_arm64) 89 87 { 90 88 /* … … 123 121 pUinstaller = new UnattendedFedoraInstaller(pParent); 124 122 else if ( enmDetectedOSType >= VBOXOSTYPE_Oracle 125 && ( enmDetectedOSType <= VBOXOSTYPE_Oracle_latest_x64 126 || enmDetectedOSType <= VBOXOSTYPE_Oracle_latest_arm64)) 123 && enmDetectedOSType <= VBOXOSTYPE_Oracle_latest_arm64) 127 124 { 128 125 if (RTStrVersionCompare(strDetectedOSVersion.c_str(), "9") >= 0) … … 138 135 } 139 136 else if ( enmDetectedOSType >= VBOXOSTYPE_FreeBSD 140 && ( enmDetectedOSType <= VBOXOSTYPE_FreeBSD_x64 141 || enmDetectedOSType <= VBOXOSTYPE_FreeBSD_arm64)) 137 && enmDetectedOSType <= VBOXOSTYPE_FreeBSD_arm64) 142 138 pUinstaller = new UnattendedFreeBsdInstaller(pParent); 143 139 #if 0 /* doesn't work, so convert later. */
Note:
See TracChangeset
for help on using the changeset viewer.