From 6e3e8777190a7859d48b70ee5eeb7e3c11dcaba5 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Mon, 29 Jul 2024 16:47:38 +0700 Subject: [PATCH] UEFI Firmware for Coffee Lake (Plus) CPUs is quite confusing regarding MATs support --- Scripts/config_prodigy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/config_prodigy.py b/Scripts/config_prodigy.py index f9049ea..de7f676 100755 --- a/Scripts/config_prodigy.py +++ b/Scripts/config_prodigy.py @@ -55,7 +55,7 @@ class ConfigProdigy: def check_mats_support(self, cpu_manufacturer, motherboard_chipset, cpu_codename): return "AMD" in cpu_manufacturer or \ - (self.utils.contains_any(cpu_data.IntelCPUGenerations, cpu_codename, start=7, end=9) is None and not self.utils.contains_any(chipset_data.IntelChipsets, motherboard_chipset, start=85) is None) or \ + not self.utils.contains_any(chipset_data.IntelChipsets, motherboard_chipset, start=97) is None or \ not self.utils.contains_any(chipset_data.IntelChipsets, motherboard_chipset, start=49, end=60) is None def check_resizable_bar_support(self, motherboard_chipset, platform, cpu_codename, discrete_gpu):