Changeset 104702 in vbox for trunk/src/VBox/Main
- Timestamp:
- May 17, 2024 9:15:08 AM (9 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ExtPackManagerImpl.h
r104692 r104702 41 41 42 42 43 /** The name of the oracle extension back. */43 /** The name of the Oracle extension pack. */ 44 44 #define ORACLE_PUEL_EXTPACK_NAME VBOX_PUEL_PRODUCT 45 45 -
trunk/src/VBox/Main/src-client/ConsoleImplConfigCommon.cpp
r104692 r104702 3162 3162 */ 3163 3163 # ifdef VBOX_WITH_EXTPACK 3164 if (!mptrExtPackManager->i_isExtPackUsable(s_pszCloudExtPackName)) 3164 if ( !mptrExtPackManager->i_isExtPackUsable(s_pszCloudExtPackName) 3165 && !mptrExtPackManager->i_isExtPackUsable("Oracle VM VirtualBox Extension Pack")) /* Legacy name -- see @bugref{10690}. */ 3165 3166 # endif 3166 3167 { -
trunk/src/VBox/Main/src-client/ConsoleImplConfigX86.cpp
r104692 r104702 280 280 # ifdef VBOX_WITH_EXTPACK 281 281 static const char *s_pszPCIRawExtPackName = VBOX_PUEL_PRODUCT; 282 if (!mptrExtPackManager->i_isExtPackUsable(s_pszPCIRawExtPackName)) 282 if ( !mptrExtPackManager->i_isExtPackUsable(s_pszPCIRawExtPackName) 283 && !mptrExtPackManager->i_isExtPackUsable("Oracle VM VirtualBox Extension Pack")) /* Legacy name -- see @bugref{10690}. */ 283 284 /* Always fatal! */ 284 285 return pVMM->pfnVMR3SetError(pUVM, VERR_NOT_FOUND, RT_SRC_POS, -
trunk/src/VBox/Main/xml/VirtualBox-settings.xsd
r103085 r104702 4 4 * :folding=explicit:collapseFolds=1: 5 5 * 6 * Oracle V M VirtualBox Settings Schema6 * Oracle VirtualBox Settings Schema 7 7 * Common definitions 8 8 --> … … 39 39 <xsd:annotation> 40 40 <xsd:documentation xml:lang="en"> 41 Oracle V M VirtualBox Settings Schema (common definitions).41 Oracle VirtualBox Settings Schema (common definitions). 42 42 Copyright (C) 2004-2023 Oracle and/or its affiliates. 43 43 </xsd:documentation> -
trunk/src/VBox/Main/xml/samples/VirtualBox-global.xml
r32436 r104702 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no" ?> 2 <!-- Oracle V M VirtualBox Sample Global Configuration -->2 <!-- Oracle VirtualBox Sample Global Configuration --> 3 3 <!-- 4 4 * :tabSize=2:indentSize=2:noTabs=true: … … 59 59 60 60 </VirtualBox> 61 62 -
trunk/src/VBox/Main/xml/samples/VirtualBox-machine-linux.xml
r32436 r104702 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no" ?> 2 <!-- Oracle V M VirtualBox Sample Machine Configuration (for a linux host) -->2 <!-- Oracle VirtualBox Sample Machine Configuration (for a linux host) --> 3 3 <!-- 4 4 * :tabSize=2:indentSize=2:noTabs=true: -
trunk/src/VBox/Main/xml/samples/VirtualBox-machine-windows.xml
r32436 r104702 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no" ?> 2 <!-- Oracle V M VirtualBox Sample Machine Configuration (for a win32 host) -->2 <!-- Oracle VirtualBox Sample Machine Configuration (for a win32 host) --> 3 3 <!-- 4 4 * :tabSize=2:indentSize=2:noTabs=true:
Note:
See TracChangeset
for help on using the changeset viewer.