From 9bd712b31ca2dee41a4fd80963fb9aeb28b8d689 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Sun, 23 Mar 2025 16:24:43 +0700 Subject: [PATCH] Revert "Add kext to patch Intel Math Kernel Library for AMD CPU systems" This reverts commit 3969760a1fc515e91c645b82eb72df848acaa54e. --- Scripts/datasets/kext_data.py | 10 ---------- Scripts/kext_maestro.py | 3 --- 2 files changed, 13 deletions(-) diff --git a/Scripts/datasets/kext_data.py b/Scripts/datasets/kext_data.py index 3615fd6..cc6de32 100644 --- a/Scripts/datasets/kext_data.py +++ b/Scripts/datasets/kext_data.py @@ -854,16 +854,6 @@ kexts = [ "repo": "HibernationFixup" } ), - KextInfo( - name = "IntelMKLFixup", - description = "Dead-simple Intel(tm) Math Kernel Library patcher for AMD CPU systems", - category = "Extras", - requires_kexts = ["Lilu"], - github_repo = { - "owner": "Carnations-Botanica", - "repo": "IntelMKLFixup" - } - ), KextInfo( name = "NoTouchID", description = "Avoid lag in authentication dialogs for board IDs with Touch ID sensors", diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index a5519a7..4d3de33 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -111,9 +111,6 @@ class KextMaestro: if "Intel" in hardware_report.get("CPU").get("Manufacturer"): selected_kexts.extend(("SMCProcessor", "SMCSuperIO")) - if "AMD" in hardware_report.get("CPU").get("Manufacturer"): - selected_kexts.append("IntelMKLFixup") - if "Laptop" in hardware_report.get("Motherboard").get("Platform") and not "SURFACE" in hardware_report.get("Motherboard").get("Name"): selected_kexts.append("SMCBatteryManager") if "DELL" in hardware_report.get("Motherboard").get("Name"):