We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3a8fed commit 88c8dcbCopy full SHA for 88c8dcb
src/detection/cpu/cpu_linux.c
@@ -716,6 +716,13 @@ FF_MAYBE_UNUSED static void detectSocName(FFCPUResult* cpu)
716
for (const char* p = model; *p; ++p)
717
ffStrbufAppendC(&cpu->name, (char) toupper(*p));
718
}
719
+ else if (ffStrEquals(vendor, "thead"))
720
+ {
721
+ // Lichee Pi?
722
+ ffStrbufSetStatic(&cpu->vendor, "T-Head");
723
+ for (const char* p = model; *p; ++p)
724
+ ffStrbufAppendC(&cpu->name, (char) toupper(*p));
725
+ }
726
else
727
{
728
ffStrbufSetS(&cpu->name, model);
0 commit comments