[v0.99] Show new Intel logo only when the CPU was released after Intel started using the new logo

This commit is contained in:
Dr-Noob
2021-08-18 12:31:59 +02:00
parent d8c69e1b9b
commit a302a4508c
3 changed files with 25 additions and 4 deletions

View File

@@ -399,6 +399,16 @@ int get_number_of_vpus(struct cpuInfo* cpu) {
}
}
bool choose_new_intel_logo(struct cpuInfo* cpu) {
switch(cpu->arch->uarch) {
case UARCH_ROCKET_LAKE:
// TODO: case UARCH_TIGER_LAKE: missing?
return true;
default:
return false;
}
}
char* get_str_uarch(struct cpuInfo* cpu) {
return cpu->arch->uarch_str;
}