From 3b89fc2950a87e21e3720b04d85f02735d5339c1 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Fri, 22 Oct 2021 16:12:59 -0600 Subject: [PATCH 1/7] Sync PatcherSupportPkg --- CHANGELOG.md | 3 ++- resources/constants.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b84740582..61a7f43fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ - Allow for setting custom SIP values via TUI - Drop `CSR_ALLOW_EXECUTABLE_POLICY_OVERRIDE` requirement for root patching - Lowers default SIP Disabled value to 0xA03 -- Remove legacy GMUX patch set for MacBookPro5,x machines due to instabilites +- Update Legacy GMUX patchset to latest Sierra Secuirty Update + - [Source](https://github.com/HackintoshHD/mbp5x-instant-gpu-switching) - Fix non-Metal acceleration crashing on 12.0.1 - Yes Apple adding a notch broke our accel patches - Fix non-Metal Control Center crashing on 12.0 Beta 10+ diff --git a/resources/constants.py b/resources/constants.py index 572a2f4e6..1e3455d0e 100644 --- a/resources/constants.py +++ b/resources/constants.py @@ -14,7 +14,7 @@ class Constants: def __init__(self): # Patcher Versioning self.patcher_version = "0.3.1" # OpenCore-Legacy-Patcher - self.patcher_support_pkg_version = "0.1.10" # PatcherSupportPkg + self.patcher_support_pkg_version = "0.1.11" # PatcherSupportPkg self.url_patcher_support_pkg = "https://github.com/dortania/PatcherSupportPkg/releases/download/" self.nightly_url_patcher_support_pkg = "https://nightly.link/dortania/PatcherSupportPkg/workflows/build/master/" From b473d189dd5510e766782cca537c4e5c79d63712 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Sat, 23 Oct 2021 22:05:31 -0600 Subject: [PATCH 2/7] Sync PatcherSupportPkg --- resources/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/constants.py b/resources/constants.py index 1e3455d0e..bb602b669 100644 --- a/resources/constants.py +++ b/resources/constants.py @@ -14,7 +14,7 @@ class Constants: def __init__(self): # Patcher Versioning self.patcher_version = "0.3.1" # OpenCore-Legacy-Patcher - self.patcher_support_pkg_version = "0.1.11" # PatcherSupportPkg + self.patcher_support_pkg_version = "0.1.12" # PatcherSupportPkg self.url_patcher_support_pkg = "https://github.com/dortania/PatcherSupportPkg/releases/download/" self.nightly_url_patcher_support_pkg = "https://nightly.link/dortania/PatcherSupportPkg/workflows/build/master/" From 6109d8c92fb9209404c4a3a0c6d6bdf1f0cba429 Mon Sep 17 00:00:00 2001 From: akidone <71437770+akidone@users.noreply.github.com> Date: Sun, 24 Oct 2021 11:20:27 +0200 Subject: [PATCH 3/7] TESTED.md Added my good old MacBookPro10,2 to the list, as it works perfectly with patcher 0.3.0. --- docs/TESTED.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/TESTED.md b/docs/TESTED.md index c2291f95f..ade0a6329 100644 --- a/docs/TESTED.md +++ b/docs/TESTED.md @@ -58,7 +58,7 @@ To aid users in troubleshooting, we've compiled a list of users who've reported | ^^ | ^^ | vinaypundith | - Patcher version 0.0.7 | | MacBookPro10,1 | ^^ | traviswparker | - Stock model
- Patcher version 0.0.14 | | ^^ | ^^ | il-rollino | - Upgraded BCM94360CSAX
- Patcher version 0.0.21 | -| MacBookPro10,2 | No reports | N/A | N/A | +| MacBookPro10,2 | ^^ | akidone | - Upgraded BCM94360CSAX
- Patcher version 0.3.0 | ### Mac mini From 113156c94cf591f4d5f941c0e063d9f6e4e8be7e Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Mon, 25 Oct 2021 15:13:38 -0600 Subject: [PATCH 4/7] Sync changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61a7f43fe..305518317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ - Fix non-Metal acceleration crashing on 12.0.1 - Yes Apple adding a notch broke our accel patches - Fix non-Metal Control Center crashing on 12.0 Beta 10+ +- Increment Binaries: + - PatcherSupportPkg 0.1.12 ## 0.3.0 - Fix Nvidia Tesla Acceleration in Monterey Beta 7+ From bc88ed27d16c55b01f606b096327d2ee2643368d Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Mon, 25 Oct 2021 15:20:26 -0600 Subject: [PATCH 5/7] Increment version --- CHANGELOG.md | 2 ++ resources/constants.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 305518317..edb377bbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # OpenCore Legacy Patcher changelog +## 0.3.2 + ## 0.3.1 - Allow for setting custom SIP values via TUI - Drop `CSR_ALLOW_EXECUTABLE_POLICY_OVERRIDE` requirement for root patching diff --git a/resources/constants.py b/resources/constants.py index bb602b669..0aa9c201e 100644 --- a/resources/constants.py +++ b/resources/constants.py @@ -13,7 +13,7 @@ from resources import device_probe class Constants: def __init__(self): # Patcher Versioning - self.patcher_version = "0.3.1" # OpenCore-Legacy-Patcher + self.patcher_version = "0.3.2" # OpenCore-Legacy-Patcher self.patcher_support_pkg_version = "0.1.12" # PatcherSupportPkg self.url_patcher_support_pkg = "https://github.com/dortania/PatcherSupportPkg/releases/download/" self.nightly_url_patcher_support_pkg = "https://nightly.link/dortania/PatcherSupportPkg/workflows/build/master/" From e4682f630767ebc496ac874a0584a1a10ebc468b Mon Sep 17 00:00:00 2001 From: educovas <44532297+educovas@users.noreply.github.com> Date: Mon, 25 Oct 2021 18:37:39 -0300 Subject: [PATCH 6/7] Update brightness control models --- docs/MODELS.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/MODELS.md b/docs/MODELS.md index 7a2c3da39..8cc7e41ad 100644 --- a/docs/MODELS.md +++ b/docs/MODELS.md @@ -35,7 +35,7 @@ Regarding OS support, see below: | MacBook3,1 | Late 2007 | ^^ | ^^ | | MacBook4,1 | Early 2008 | YES | - No GPU Acceleration in Mavericks and newer
- No Keyboard and Trackpad
- No USB | | MacBook5,1 | Late 2008 | ^^ | - GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108))
| -| MacBook5,2 | Early 2009 | ^^ | - GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108))
- Trackpad is recognized as mouse
- Brightness control partially supported | +| MacBook5,2 | Early 2009 | ^^ | - GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108))
- Trackpad is recognized as mouse | | MacBook6,1 | Late 2009 | ^^ | - GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108))
| | MacBook7,1 | Mid-2010 | ^^ | ^^ | | MacBook8,1 | Mid-2015 | ^^ | Everything is supported | @@ -107,8 +107,8 @@ Regarding OS support, see below: | iMac5,1 | Late 2006 | ^^ | 32-Bit Firmware limitation | | iMac5,2 | ^^ | ^^ | ^^ | | iMac6,1 | ^^ | ^^ | ^^ | -| iMac7,1 | Mid-2007 | YES | - Requires an [SSE4.1 CPU Upgrade](https://lowendmac.com/2018/penryn-t9300-9500-cpu-upgrades-for-the-2007-imac/)
- GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108))
- Brightness control partially supported on Nvidia GPUs, AMD unsupported
- Stock Bluetooth 2.0 card non-functional | -| iMac8,1 | Early 2008 | ^^ | - GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108)))
- Brightness control partially supported on Nvidia GPUs, AMD unsupported | +| iMac7,1 | Mid-2007 | YES | - Requires an [SSE4.1 CPU Upgrade](https://lowendmac.com/2018/penryn-t9300-9500-cpu-upgrades-for-the-2007-imac/)
- GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108))
- Stock Bluetooth 2.0 card non-functional | +| iMac8,1 | Early 2008 | ^^ | - GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108))) | | iMac9,1 | Early 2009 | ^^ | ^^ | | iMac10,1 | Late 2009 | ^^ | - GPU is socketed, [recommend upgrading to Metal GPU](https://forums.macrumors.com/threads/2011-imac-graphics-card-upgrade.1596614/?post=17425857#post-17425857)
- GPU Acceleration in Public Beta, see current issues ([#108](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/108)) | | iMac11,1 | ^^ | ^^ | ^^ | From 5c54276a85f21abaec042cc0fd951abb0dd4ec66 Mon Sep 17 00:00:00 2001 From: Ausdauersportler <71768134+Ausdauersportler@users.noreply.github.com> Date: Tue, 26 Oct 2021 17:31:32 +0200 Subject: [PATCH 7/7] Update MONTEREY-DROP.md Added short section about NVIDIA Kepler based systems. --- docs/MONTEREY-DROP.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/MONTEREY-DROP.md b/docs/MONTEREY-DROP.md index 594225465..0e05ea5b3 100644 --- a/docs/MONTEREY-DROP.md +++ b/docs/MONTEREY-DROP.md @@ -102,6 +102,19 @@ By default these machines require root volume patches to gain graphics accelerat ::: +::: details NVIDIA Kepler dGPU Acceleration (Resolved in 0.2.5 and newer) + +* NVIDIA Kepler dGPUs lost support + +By default these machines require root volume patches to gain graphics acceleration in Monterey. OpenCore Legacy Patcher supports readding support however SIP can no longer be enabled due to root patching: + +* MacBookPro9,1 +* MacBookPro10,1 +* iMac13,x +* iMac14,x + +::: + ::: details Non-Metal Acceleration (Resolved in 0.2.5 and newer) * Non-Metal GPUs no longer have working acceleration patches: