Remove npci=0x2000 bootarg for AMD CPU systems

This commit is contained in:
Hoang Hong Quan
2025-10-21 21:03:39 +07:00
parent 32f73e8f2a
commit 88c71135c3

View File

@@ -509,7 +509,7 @@ class ConfigProdigy:
"keepsyms=1"
]
if config["Booter"]["Quirks"]["ResizeAppleGpuBars"] != 0 and ("AMD" in hardware_report.get("CPU").get("Manufacturer") or self.is_intel_hedt_cpu(hardware_report.get("CPU").get("Processor Name"), hardware_report.get("CPU").get("Codename"))):
if config["Booter"]["Quirks"]["ResizeAppleGpuBars"] != 0 and self.is_intel_hedt_cpu(hardware_report.get("CPU").get("Processor Name"), hardware_report.get("CPU").get("Codename")):
boot_args.append("npci=0x2000")
for kext in kexts: