From c708b6f5cdb514db711f29f41b3e69166af1839e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Sat, 5 Sep 2026 00:32:58 +0800 Subject: [PATCH] CPU (Linux): adds apple code of M5x --- src/detection/cpu/cpu.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/detection/cpu/cpu.c b/src/detection/cpu/cpu.c index a796175e0..75db6f92c 100644 --- a/src/detection/cpu/cpu.c +++ b/src/detection/cpu/cpu.c @@ -62,6 +62,10 @@ const char* ffCPUAppleCodeToName(uint32_t code) { return "Apple M4 Pro"; case 6041: return "Apple M4 Max"; + case 8142: + return "Apple M5"; + case 6050: + return "Apple M5 Pro / Max"; default: return nullptr; }