Sync PatcherSupportPkg for non-Metal support

This commit is contained in:
Mykola Grymalyuk
2024-09-12 07:41:26 -06:00
parent 7f0a96126b
commit 00ea5a7843
3 changed files with 11 additions and 11 deletions

View File

@@ -18,21 +18,20 @@
- Resolve AMD Navi MXM GPU detection for modded iMac9,x-12,x - Resolve AMD Navi MXM GPU detection for modded iMac9,x-12,x
- Thanks @Ausdauersportler for the patch! - Thanks @Ausdauersportler for the patch!
- Implement early macOS Sequoia support: - Implement early macOS Sequoia support:
- Supporting Macs with Metal-based graphics: - Supporting Macs with Metal and non-Metal-based graphics:
- MacBook8,1 - 10,1 - MacBook5,x - 10,1
- MacBookAir5,x - 7,x - MacBookAir2,x - 7,x
- MacBookPro9,x - 14,x - MacBookPro4,1 - 14,x
- Macmini6,x - 7,1 - Macmini3,1 - 7,1
- iMac13,x - 18,x - iMac7,1 - 18,x
- iMac10,1 - 12,x included if Metal GPU installed.
- MacPro3,1 - 6,1 - MacPro3,1 - 6,1
- MacPro3,1 - 5,1 require Metal GPU installed.
- MacPro3,1 can only boot with 4 cores max currently - MacPro3,1 can only boot with 4 cores max currently
- Xserve2,1 - 3,1 - Xserve2,1 - 3,1
- Requires Metal GPU installed.
- Xserve2,1 can only boot with 4 cores max currently - Xserve2,1 can only boot with 4 cores max currently
- Excludes the newly dropped MacBookAir8,x series. - Excludes the newly dropped MacBookAir8,x series.
- No estimate can be given when support will be added. - No estimate can be given when support will be added.
- For non-Metal graphics, Photos app will be broken.
- No estimate can be given when support will be added.
- Implement new MetallibSupportPkg system to support macOS Sequoia on Metal 3802-based GPUs. - Implement new MetallibSupportPkg system to support macOS Sequoia on Metal 3802-based GPUs.
- See repository for more details: [MetallibSupportPkg](https://github.com/dortania/MetallibSupportPkg). - See repository for more details: [MetallibSupportPkg](https://github.com/dortania/MetallibSupportPkg).
- Implement new Patchset Detection architecture. - Implement new Patchset Detection architecture.
@@ -42,7 +41,7 @@
- Resolve Memoji crashes on 3802 GPUs. - Resolve Memoji crashes on 3802 GPUs.
- Resolve Photos Memories tab crash on Intel Ivy Bridge/Haswell iGPUs. - Resolve Photos Memories tab crash on Intel Ivy Bridge/Haswell iGPUs.
- Increment Binaries: - Increment Binaries:
- PatcherSupportPkg 1.7.9 - release - PatcherSupportPkg 1.8.0 - release
- OpenCorePkg 1.0.1 - release - OpenCorePkg 1.0.1 - release
- Lilu 1.6.8 - release - Lilu 1.6.8 - release
- WhateverGreen 1.6.7 - release - WhateverGreen 1.6.7 - release

Binary file not shown.

View File

@@ -14,7 +14,7 @@ class Constants:
def __init__(self) -> None: def __init__(self) -> None:
# Patcher Versioning # Patcher Versioning
self.patcher_version: str = "2.0.0" # OpenCore-Legacy-Patcher self.patcher_version: str = "2.0.0" # OpenCore-Legacy-Patcher
self.patcher_support_pkg_version: str = "1.7.9" # PatcherSupportPkg self.patcher_support_pkg_version: str = "1.8.0" # PatcherSupportPkg
self.copyright_date: str = "Copyright © 2020-2024 Dortania" self.copyright_date: str = "Copyright © 2020-2024 Dortania"
self.patcher_name: str = "OpenCore Legacy Patcher" self.patcher_name: str = "OpenCore Legacy Patcher"
@@ -246,6 +246,7 @@ class Constants:
os_data.os_data.monterey, os_data.os_data.monterey,
os_data.os_data.ventura, os_data.os_data.ventura,
os_data.os_data.sonoma, os_data.os_data.sonoma,
os_data.os_data.sequoia,
] ]
@property @property