From fda56c68b1a003e8a9d0fe2e27bfa1646878e93f Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Sun, 16 Nov 2025 22:06:19 +0700 Subject: [PATCH] Update kext selection for AMD SATA Controller --- 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 b7b6042..ef29752 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -400,7 +400,7 @@ class KextMaestro: for controller_name, controller_props in hardware_report.get("Storage Controllers", {}).items(): if "NVMe" in controller_name or "NVM Express" in controller_name: selected_kexts.append("NVMeFix") - elif not "AHCI" in controller_name: + elif not "AHCI" in controller_name or "AMD" in hardware_report.get("CPU").get("Manufacturer"): if self.utils.parse_darwin_version(macos_version) >= self.utils.parse_darwin_version("20.0.0"): if controller_props.get("Device ID") in pci_data.UnsupportedSATAControllerIDs: selected_kexts.append("CtlnaAHCIPort")