Changeset 95156 in vbox
- Timestamp:
- Jun 1, 2022 8:19:53 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151652
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/UnattendedImpl.cpp
r95155 r95156 3627 3627 } 3628 3628 /* We cannot install Ubuntus older than 11.04. */ 3629 if ( mEnmOsType == VBOXOSTYPE_Ubuntu || mEnmOsType == VBOXOSTYPE_Ubuntu_x64)3629 if ((mEnmOsType & VBOXOSTYPE_OsTypeMask) == VBOXOSTYPE_Ubuntu) 3630 3630 { 3631 3631 if (RTStrVersionCompare(mStrDetectedOSVersion.c_str(), "11.04") < 0) … … 3636 3636 } 3637 3637 /* Earlier than OL 6.4 cannot be installed. OL 6.x fails with unsupported hardware error (CPU family). */ 3638 if ( mEnmOsType == VBOXOSTYPE_Oracle || mEnmOsType == VBOXOSTYPE_Oracle_x64)3638 if ((mEnmOsType & VBOXOSTYPE_OsTypeMask) == VBOXOSTYPE_Oracle) 3639 3639 { 3640 3640 if (RTStrVersionCompare(mStrDetectedOSVersion.c_str(), "6.4") < 0) … … 3645 3645 } 3646 3646 /* Old Debians fail since package repos have been move to some other mirror location. */ 3647 if ( mEnmOsType == VBOXOSTYPE_Debian || mEnmOsType == VBOXOSTYPE_Debian_x64)3647 if ((mEnmOsType & VBOXOSTYPE_OsTypeMask) == VBOXOSTYPE_Debian) 3648 3648 { 3649 3649 if (RTStrVersionCompare(mStrDetectedOSVersion.c_str(), "9.0") < 0)
Note:
See TracChangeset
for help on using the changeset viewer.