Add bootarg to disable unsupported Integrated GPU

This commit is contained in:
Hoang Hong Quan
2024-07-30 01:50:34 +07:00
parent d9cdf6291e
commit 834c2e74b6

View File

@@ -214,6 +214,9 @@ class ConfigProdigy:
if "Discrete GPU" in ",".join(unsupported_devices):
boot_args.append("-wegnoegpu")
if "Integrated GPU" in ",".join(unsupported_devices):
boot_args.append("-wegnoigpu")
return " ".join(boot_args)
def csr_active_config(self, macos_version):