From 834c2e74b60d174c1b0e5d96ce3cf9937cbf9cb0 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Tue, 30 Jul 2024 01:50:34 +0700 Subject: [PATCH] Add bootarg to disable unsupported Integrated GPU --- Scripts/config_prodigy.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Scripts/config_prodigy.py b/Scripts/config_prodigy.py index 25e73b7..846f7c6 100755 --- a/Scripts/config_prodigy.py +++ b/Scripts/config_prodigy.py @@ -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):