From ed9f9a05b57d9d940c79aa88a3b30cf0fd58a10b Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Fri, 4 Nov 2022 14:48:29 -0600 Subject: [PATCH] build.py: Set arch logic --- resources/build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/build.py b/resources/build.py index 860c7a4de..7ef58486a 100644 --- a/resources/build.py +++ b/resources/build.py @@ -988,6 +988,8 @@ class BuildOpenCore: if self.model in smbios_data.smbios_dictionary: gpu_dict = smbios_data.smbios_dictionary[self.model]["Stock GPUs"] for gpu in gpu_dict: + if not self.constants.custom_model: + gpu = gpu.arch if gpu in [ device_probe.Intel.Archs.Ivy_Bridge, device_probe.Intel.Archs.Haswell,