Skip to content

Commit

Permalink
build.py: Set BUF0 patch to UEFI 1.2 Macs only
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Oct 25, 2022
1 parent 0cbfe14 commit 0e270ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/build.py
Expand Up @@ -437,7 +437,7 @@ def wifi_fake_id(self):
self.get_item_by_kv(self.config["ACPI"]["Add"], "Path", "SSDT-CPBG.aml")["Enabled"] = True
shutil.copy(self.constants.pci_ssdt_path, self.constants.acpi_path)

if cpu_data.cpu_data.sandy_bridge <= smbios_data.smbios_dictionary[self.model]["CPU Generation"] <= cpu_data.cpu_data.ivy_bridge.value:
if cpu_data.cpu_data.sandy_bridge <= smbios_data.smbios_dictionary[self.model]["CPU Generation"] <= cpu_data.cpu_data.ivy_bridge.value and self.model != "MacPro6,1":
# Based on: https://egpu.io/forums/pc-setup/fix-dsdt-override-to-correct-error-12/
# Applicable for Sandy and Ivy Bridge Macs
print("- Enabling Windows 10 UEFI Audio support")
Expand Down

0 comments on commit 0e270ea

Please sign in to comment.