Revert my additions to the patch from #4733, Core 2, Core 2 Duo and Core 2
Quad are all reported as "Core 2", because the CPU count is already reported separately. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33646 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
095a7d8415
commit
7d05cf36fc
@ -191,10 +191,9 @@ get_cpu_model_string(system_info *info)
|
||||
get_cpuid_model_string(cpuidName);
|
||||
if (strcasestr(cpuidName, "Celeron") != NULL)
|
||||
return "Core 2 Celeron";
|
||||
if (strcasestr(cpuidName, "Duo") != NULL)
|
||||
return "Core 2 Duo";
|
||||
if (strcasestr(cpuidName, "Quad") != NULL)
|
||||
return "Core 2 Quad";
|
||||
if (strcasestr(cpuidName, "Duo") != NULL
|
||||
|| strcasestr(cpuidName, "Quad") != NULL)
|
||||
return "Core 2";
|
||||
if (strcasestr(cpuidName, "Xeon") != NULL)
|
||||
return "Core 2 Xeon";
|
||||
return "Core 2 Extreme";
|
||||
|
Loading…
Reference in New Issue
Block a user