Skip to content

Commit

Permalink
Change TGL kexts path from /L/E to /S/L/E
Browse files Browse the repository at this point in the history
  • Loading branch information
AlfCraft07 authored Aug 27, 2024
1 parent 326db72 commit 0c26785
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WhateverGreen/kern_igfx_kexts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ static const char *pathIntelCNLFb[] { "/System/Library/Extensions/AppleIntelCN
static const char *pathIntelICL[] { "/System/Library/Extensions/AppleIntelICLGraphics.kext/Contents/MacOS/AppleIntelICLGraphics" };
static const char *pathIntelICLLPFb[] { "/System/Library/Extensions/AppleIntelICLLPGraphicsFramebuffer.kext/Contents/MacOS/AppleIntelICLLPGraphicsFramebuffer" };
static const char *pathIntelICLHPFb[] { "/System/Library/Extensions/AppleIntelICLHPGraphicsFramebuffer.kext/Contents/MacOS/AppleIntelICLHPGraphicsFramebuffer" };
static const char *pathIntelTGL[] { "/Library/Extensions/AppleIntelTGLGraphics.kext/Contents/MacOS/AppleIntelTGLGraphics" };
static const char *pathIntelTGLFb[] { "/Library/Extensions/AppleIntelTGLGraphicsFramebuffer.kext/Contents/MacOS/AppleIntelTGLGraphicsFramebuffer" };
static const char *pathIntelTGL[] { "/System/Library/Extensions/AppleIntelTGLGraphics.kext/Contents/MacOS/AppleIntelTGLGraphics" };
static const char *pathIntelTGLFb[] { "/System/Library/Extensions/AppleIntelTGLGraphicsFramebuffer.kext/Contents/MacOS/AppleIntelTGLGraphicsFramebuffer" };

KernelPatcher::KextInfo kextIntelHD { "com.apple.driver.AppleIntelHDGraphics", pathIntelHD, arrsize(pathIntelHD), {}, {}, KernelPatcher::KextInfo::Unloaded };
KernelPatcher::KextInfo kextIntelHDFb { "com.apple.driver.AppleIntelHDGraphicsFB", pathIntelHDFb, arrsize(pathIntelHDFb), {}, {}, KernelPatcher::KextInfo::Unloaded };
Expand All @@ -52,4 +52,4 @@ KernelPatcher::KextInfo kextIntelICL { "com.apple.driver.AppleIntelICLGraphi
KernelPatcher::KextInfo kextIntelICLLPFb { "com.apple.driver.AppleIntelICLLPGraphicsFramebuffer", pathIntelICLLPFb, arrsize(pathIntelICLLPFb), {}, {}, KernelPatcher::KextInfo::Unloaded };
KernelPatcher::KextInfo kextIntelICLHPFb { "com.apple.driver.AppleIntelICLHPGraphicsFramebuffer", pathIntelICLHPFb, arrsize(pathIntelICLHPFb), {}, {}, KernelPatcher::KextInfo::Unloaded };
KernelPatcher::KextInfo kextIntelTGL {"com.apple.driver.AppleIntelTGLGraphics", pathIntelTGL, arrsize(pathIntelTGL), {}, {}, KernelPatcher::KextInfo::Unloaded };
KernelPatcher::KextInfo kextIntelTGLFb {"com.apple.driver.AppleIntelTGLGraphicsFramebuffer", pathIntelTGLFb, arrsize(pathIntelTGLFb), {}, {}, KernelPatcher::KextInfo::Unloaded };
KernelPatcher::KextInfo kextIntelTGLFb {"com.apple.driver.AppleIntelTGLGraphicsFramebuffer", pathIntelTGLFb, arrsize(pathIntelTGLFb), {}, {}, KernelPatcher::KextInfo::Unloaded };

0 comments on commit 0c26785

Please sign in to comment.