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")