From c4c6075fa084660a3d4ece2b8d3aa5c1f31dc922 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Sun, 20 Oct 2024 14:26:04 +0700 Subject: [PATCH] Default to using WhateverGreen for AMD Navi 21 and Navi 23 GPUs --- README.md | 1 - Scripts/kext_maestro.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 1391a03..db94e2a 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,6 @@ - Custom ACPI patches, kexts, and SMBIOS adjustments (**not recommended**). - Force load kexts on unsupported macOS versions. - - Use AMD GPUs Navi 23 and Navi 21 with WhateverGreen (default will use NootRX). - Add mode selection for performance and efficiency on supported discrete GPUs for laptops. - Support AirportItlwm on macOS Sequoia 15 with **temporary workaround**. Manually select AirportItlwm, IOSkywalkFamily and IO80211FamilyLegacy kexts, then apply the root patch from OpenCore Legacy Patcher. diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index 0e9b895..766fb1a 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -136,7 +136,7 @@ class KextMaestro: "Integrated GPU" in list(hardware_report.get("GPU").items())[-1][-1].get("Device Type"): selected_kexts.append("NootedRed") else: - selected_kexts.append("NootRX" if "Navi 2" in list(hardware_report.get("GPU").items())[0][-1].get("Codename") else "WhateverGreen") + selected_kexts.append("NootRX" if "Navi 22" in list(hardware_report.get("GPU").items())[0][-1].get("Codename") else "WhateverGreen") if "Laptop" in hardware_report.get("Motherboard").get("Platform") and "ASUS" in hardware_report.get("Motherboard").get("Name") or \ "NootedRed" in selected_kexts or \