From 7fca30a23c62069221b1194313e0749ce9872eaa Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Sun, 15 Dec 2024 15:17:07 +0700 Subject: [PATCH] Revert "Set default NootRX for AMD RDNA 2 GPUs" This reverts commit ea2faa0fdfe7f37dbdaec621bf7f38e2f607e69c. --- Scripts/kext_maestro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index 4ffa4e3..0404146 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -140,7 +140,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): selected_kexts.append("ForgedInvariant")