Changeset 65384 in vbox for trunk/src/VBox
- Timestamp:
- Jan 20, 2017 10:05:18 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testdriver/vbox.py
r65372 r65384 2906 2906 return sCpuDesc.startswith("VIA") or sCpuDesc == 'CentaurHauls'; 2907 2907 2908 def isHostCpuP4(self, fQuiet = False): 2909 """ 2910 Checks if the host CPU is a Pentium 4 / Pentium D. 2911 2912 Returns True / False. 2913 """ 2914 if not self.isHostCpuIntel(): 2915 return False; 2916 2917 (uFamilyModel, _, _, _) = self.oVBox.host.getProcessorCPUIDLeaf(0, 0x1, 0); 2918 return ((uFamilyModel >> 8) & 0xf) == 0xf; 2919 2908 2920 def hasRawModeSupport(self, fQuiet = False): 2909 2921 """
Note:
See TracChangeset
for help on using the changeset viewer.