Missing bootarg to disable unsupported GPU since commit #87af6bd

This commit is contained in:
Hoang Hong Quan
2024-08-02 18:26:56 +07:00
parent 95eea3f879
commit 2f55c33e2a

View File

@@ -206,10 +206,10 @@ class ConfigProdigy:
if macos_version > 23:
boot_args.append("-lilubetaall")
if "Discrete GPU" in ",".join(unsupported_devices):
if "Discrete GPU" in unsupported_devices:
boot_args.append("-wegnoegpu")
if "Integrated GPU" in ",".join(unsupported_devices):
if "Integrated GPU" in unsupported_devices:
boot_args.append("-wegnoigpu")
if discrete_gpu_id in ["1002-6610", "1002-682B", "1002-6837", "1002-683D", "1002-683F"]: