Index: /trunk/src/VBox/ValidationKit/testmanager/core/testbox.py
===================================================================
--- /trunk/src/VBox/ValidationKit/testmanager/core/testbox.py	(revision 61308)
+++ /trunk/src/VBox/ValidationKit/testmanager/core/testbox.py	(revision 61309)
@@ -365,4 +365,18 @@
             if uFam == 0x16:
                 return 'Jaguar';
+        elif self.sCpuVendor == 'CentaurHauls':
+            if uFam == 0x05:
+                if uMod == 0x01: return 'Centaur_C6';
+                if uMod == 0x04: return 'Centaur_C6';
+                if uMod == 0x08: return 'Centaur_C2';
+                if uMod == 0x09: return 'Centaur_C3';
+            if uFam == 0x06:
+                if uMod == 0x05: return 'VIA_C3_M2';
+                if uMod == 0x06: return 'VIA_C3_C5A';
+                if uMod == 0x07: return 'VIA_C3_C5B' if self.getCpuStepping() < 8 else 'VIA_C3_C5C';
+                if uMod == 0x08: return 'VIA_C3_C5N';
+                if uMod == 0x09: return 'VIA_C3_C5XL' if self.getCpuStepping() < 8 else 'VIA_C3_C5P';
+                if uMod == 0x10: return 'VIA_C7_C5J';
+                if uMod == 0x15: return 'VIA_Isaiah';
         return None;
 
