Changeset 95154 in vbox for trunk/src/VBox
- Timestamp:
- Jun 1, 2022 8:09:21 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/UnattendedImpl.cpp
r95064 r95154 1366 1366 fRet = false; 1367 1367 } 1368 else if ( RTStrNICmp(pszOsAndVersion, RT_STR_TUPLE("OpenSUSE")) == 0 1369 && !RT_C_IS_ALNUM(pszOsAndVersion[8])) 1370 { 1371 *penmOsType = (VBOXOSTYPE)((*penmOsType & VBOXOSTYPE_x64) | VBOXOSTYPE_OpenSUSE); 1372 pszOsAndVersion = RTStrStripL(pszOsAndVersion + 8); 1373 } 1368 1374 else if ( RTStrNICmp(pszOsAndVersion, RT_STR_TUPLE("Oracle")) == 0 1369 1375 && !RT_C_IS_ALNUM(pszOsAndVersion[6])) … … 3647 3653 } 3648 3654 } 3649 3655 /* Skip all OpenSUSE variants for now. */ 3656 if ((mEnmOsType & 0xff000) == VBOXOSTYPE_OpenSUSE) 3657 { 3658 *aIsUnattendedInstallSupported = false; 3659 return S_OK; 3660 } 3650 3661 *aIsUnattendedInstallSupported = true; 3651 3662 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.