Changeset 48777 in vbox for trunk/src/VBox/Main
- Timestamp:
- Oct 1, 2013 2:10:12 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89415
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r48764 r48777 925 925 if (fOsXGuest) 926 926 { 927 if ( osTypeId == "MacOS"928 || osTypeId == "MacOS _x64"929 || osTypeId >= "MacOS107_x64")927 if ( osTypeId >= "MacOS107_64" 928 || osTypeId == "MacOS" /* legacy */ 929 || osTypeId == "MacOS_64") /* legacy */ 930 930 InsertConfigInteger(pCPUM, "EnableHVP", 1); 931 931 … … 936 936 uint32_t uMaxIntelFamilyModelStep = UINT32_MAX; 937 937 if ( osTypeId == "MacOS" 938 || osTypeId == "MacOS_ x64")938 || osTypeId == "MacOS_64") 939 939 uMaxIntelFamilyModelStep = RT_MAKE_U32_FROM_U8(1, 23, 6, 7); /* Penryn / X5482. */ 940 940 else if ( osTypeId == "MacOS106" 941 || osTypeId == "MacOS106_ x64")941 || osTypeId == "MacOS106_64") 942 942 uMaxIntelFamilyModelStep = RT_MAKE_U32_FROM_U8(1, 23, 6, 7); /* Penryn / X5482 */ 943 943 else if ( osTypeId == "MacOS107" 944 || osTypeId == "MacOS107_ x64")944 || osTypeId == "MacOS107_64") 945 945 uMaxIntelFamilyModelStep = RT_MAKE_U32_FROM_U8(1, 23, 6, 7); /* Penryn / X5482 */ /** @todo figure out what is required here. */ 946 946 else if ( osTypeId == "MacOS108" 947 || osTypeId == "MacOS108_ x64")947 || osTypeId == "MacOS108_64") 948 948 uMaxIntelFamilyModelStep = RT_MAKE_U32_FROM_U8(1, 23, 6, 7); /* Penryn / X5482 */ /** @todo figure out what is required here. */ 949 949 else if ( osTypeId == "MacOS109" 950 || osTypeId == "MacOS109_ x64")950 || osTypeId == "MacOS109_64") 951 951 uMaxIntelFamilyModelStep = RT_MAKE_U32_FROM_U8(1, 23, 6, 7); /* Penryn / X5482 */ /** @todo figure out what is required here. */ 952 952 if (uMaxIntelFamilyModelStep != UINT32_MAX)
Note:
See TracChangeset
for help on using the changeset viewer.