Update SMBIOS options for AMD systems and check for the presence of NVMe SSD

This commit is contained in:
Hoang Hong Quan
2024-08-01 07:12:47 +07:00
parent 161b177f96
commit 8cdcfc3e3a
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -691,7 +691,7 @@ class KextMaestro:
kexts.extend(["RealtekCardReader", "RealtekCardReaderFriend"])
for controller_name, controller_props in storage_controllers.items():
if "NVMe" in controller_name or "NVM Express" in controller_props.get("Device Description"):
if "NVMe" in controller_name + controller_props.get("Device Description") or "NVM Express" in controller_name + controller_props.get("Device Description"):
kexts.append("NVMeFix")
else:
if controller_props.get("Device ID") in pci_data.UnsupportedSATAControllerIDs and not "AHCI" in controller_name: