From d4bd64ccd7729f532d2b28a839afc61c0dda50bc Mon Sep 17 00:00:00 2001 From: PMheart <17109513+PMheart@users.noreply.github.com> Date: Thu, 22 Jun 2023 18:22:54 +0200 Subject: [PATCH] OcAppleKernelLib: Fix`ForceAquantiaEthernet` patch by @Mieze `__ZN30AppleEthernetAquantiaAqtion10718checkConfigSupportERiS0_` does not exist on macOS 10.15.4; dropping it makes the patch unique. --- Library/OcAppleKernelLib/CommonPatches.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/OcAppleKernelLib/CommonPatches.c b/Library/OcAppleKernelLib/CommonPatches.c index c294fca7..17432ee7 100644 --- a/Library/OcAppleKernelLib/CommonPatches.c +++ b/Library/OcAppleKernelLib/CommonPatches.c @@ -2442,7 +2442,7 @@ STATIC PATCHER_GENERIC_PATCH mAquantiaEthernetPatchMieze = { .Comment = DEBUG_POINTER ("ForceAquantiaEthernetMieze"), - .Base = "__ZN30AppleEthernetAquantiaAqtion10718checkConfigSupportERiS0_", + .Base = NULL, .Find = mAquantiaEthernetPatchFindMieze, .Mask = mAquantiaEthernetPatchMaskMieze, .Replace = mAquantiaEthernetPatchReplaceMieze,