From 04226f1e97dd30b2e757893d230a5b1d67017b0d Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 21 Nov 2019 18:14:29 +0100 Subject: [PATCH] Add the cpuid of the business/rackmount version of z15 as well --- cpuid_zarch.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cpuid_zarch.c b/cpuid_zarch.c index 872d846..df3b789 100644 --- a/cpuid_zarch.c +++ b/cpuid_zarch.c @@ -70,6 +70,7 @@ int detect(void) if (strstr(p, "3906")) return CPU_Z14; if (strstr(p, "3907")) return CPU_Z14; if (strstr(p, "8561")) return CPU_Z14; // fallback z15 to z14 + if (strstr(p, "8562")) return CPU_Z14; // fallback z15 to z14 return CPU_GENERIC; } -- 2.7.4