mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-20 14:10:51 +10:00
Fix device tree renaming
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
- Apple Binaries 59a52a3 (0.0.8 release - 05-24-2021)
|
- Apple Binaries 59a52a3 (0.0.8 release - 05-24-2021)
|
||||||
- Allow legacy macOS Booting
|
- Allow legacy macOS Booting
|
||||||
- Fix Photos app distortion on legacy GPUs
|
- Fix Photos app distortion on legacy GPUs
|
||||||
|
- Fix device tree renaming on Mac Pros and Xserves
|
||||||
|
|
||||||
## 0.1.5
|
## 0.1.5
|
||||||
- Fix crashing when Wireless module not present
|
- Fix crashing when Wireless module not present
|
||||||
|
|||||||
+2
-2
@@ -440,10 +440,10 @@ class BuildOpenCore:
|
|||||||
print(f"- Found dGPU ({x}) at {mp_dgpu_path}")
|
print(f"- Found dGPU ({x}) at {mp_dgpu_path}")
|
||||||
if mp_dgpu_vendor == self.constants.pci_amd_ati:
|
if mp_dgpu_vendor == self.constants.pci_amd_ati:
|
||||||
print("- Adding Mac Pro, Xserve DRM patches")
|
print("- Adding Mac Pro, Xserve DRM patches")
|
||||||
self.config["DeviceProperties"]["Add"][mp_dgpu_path] = {"shikigva": 128, "unfairgva": 1, "wegtree": 1}
|
self.config["DeviceProperties"]["Add"][mp_dgpu_path] = {"shikigva": 128, "unfairgva": 1, "rebuild-device-tree": 1}
|
||||||
elif mp_dgpu_vendor == self.constants.pci_nvidia:
|
elif mp_dgpu_vendor == self.constants.pci_nvidia:
|
||||||
print("- Enabling Nvidia Output Patch")
|
print("- Enabling Nvidia Output Patch")
|
||||||
self.config["DeviceProperties"]["Add"][mp_dgpu_path] = {"wegtree": 1}
|
self.config["DeviceProperties"]["Add"][mp_dgpu_path] = {"rebuild-device-tree": 1}
|
||||||
self.config["UEFI"]["Quirks"]["ForgeUefiSupport"] = True
|
self.config["UEFI"]["Quirks"]["ForgeUefiSupport"] = True
|
||||||
self.config["UEFI"]["Quirks"]["ReloadOptionRoms"] = True
|
self.config["UEFI"]["Quirks"]["ReloadOptionRoms"] = True
|
||||||
|
|
||||||
|
|||||||
@@ -716,7 +716,7 @@ class broadcom_ids:
|
|||||||
"4320", # BCM4306 - never used by Apple
|
"4320", # BCM4306 - never used by Apple
|
||||||
"4324", # BCM4309 - never used by Apple
|
"4324", # BCM4309 - never used by Apple
|
||||||
"4325", # BCM4306 - never used by Apple
|
"4325", # BCM4306 - never used by Apple
|
||||||
"4328", # BCM94328
|
"4328", # BCM4328
|
||||||
"432C", # BCM4322 - never used by Apple
|
"432C", # BCM4322 - never used by Apple
|
||||||
"432D", # BCM4322 - never used by Apple
|
"432D", # BCM4322 - never used by Apple
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user