From 922f207da7546e196199bbafb99e5ee20fe171cb Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Wed, 5 May 2021 12:38:20 -0600 Subject: [PATCH] Add better debug during Root Patch --- Resources/SysPatch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Resources/SysPatch.py b/Resources/SysPatch.py index b3382f120..10397f354 100644 --- a/Resources/SysPatch.py +++ b/Resources/SysPatch.py @@ -125,6 +125,7 @@ class PatchSysVolume: igpu_vendor,igpu_device = DeviceProbe.pci_probe().gpu_probe("IGPU") dgpu_vendor,dgpu_device = DeviceProbe.pci_probe().gpu_probe("GFX0") if dgpu_vendor: + print(f"- Found GFX0: {dgpu_vendor}{dgpu_device}") if dgpu_vendor == self.constants.pci_nvidia: #if self.nvidia_arch == self.constants.arch_kepler and self.constants.assume_legacy is True and self.constants.detected_os > self.constants.big_sur: # print("- Merging legacy Nvidia Kepler Kexts and Bundles") @@ -138,6 +139,7 @@ class PatchSysVolume: self.delete_old_binaries(ModelArray.DeleteAMDAccel11) self.add_new_binaries(ModelArray.AddAMDAccel11, self.constants.legacy_amd_path) if igpu_vendor: + print(f"- Found IGPU: {igpu_vendor}{igpu_device}") if igpu_vendor == self.constants.pci_intel: if igpu_device in ModelArray.IronLakepciid: print("- Merging legacy Intel 1st Gen Kexts and Bundles")