From b6b66a569f106e51428ab0a9bc2be26b4e3433d8 Mon Sep 17 00:00:00 2001 From: Andrey1970AppleLife Date: Thu, 29 Sep 2022 16:31:03 +0300 Subject: [PATCH] ocvalidate: Added CryptexFixup.kext --- Docs/Kexts.md | 2 +- Utilities/ocvalidate/KextInfo.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Docs/Kexts.md b/Docs/Kexts.md index dabb3747..e36cc626 100644 --- a/Docs/Kexts.md +++ b/Docs/Kexts.md @@ -66,7 +66,6 @@ Kexts | [TSCAdjustReset.kext](https://github.com/interferenc/TSCAdjustReset) | — | — | — | | [VoodooTSCSync.kext](https://github.com/RehabMan/VoodooTSCSync) | — | — | — | | [CpuTscSync.kext](https://github.com/acidanthera/CpuTscSync) | 12.0.0 (10.8) | — | — | -| [FakeSMC-32.kext](https://github.com/khronokernel/Legacy-Kexts/blob/master/32Bit-only/Zip/FakeSMC-32.kext.zip?raw=true) | 8.0.0 (10.4) | 11.9.9 (10.7) | For VMs with EFI64 | | [VirtualSMC.kext](https://github.com/acidanthera/VirtualSMC) | 8.0.0 (10.4) | — | — | | [SMCLightSensor.kext](https://github.com/acidanthera/VirtualSMC) | 10.0.0 (10.6) | — | Not tested 10.6 and 10.7 | | [SMCSuperIO.kext](https://github.com/acidanthera/VirtualSMC) | 10.0.0 (10.6) | — | Not tested 10.6 and 10.7 | @@ -98,6 +97,7 @@ Kexts | [TOSMotionSensor.kext](https://github.com/jslegendre/TOSMotionSensor) | — | — | — | | [FeatureUnlock.kext](https://github.com/acidanthera/FeatureUnlock) | — | — | — | | [MacHyperVSupport.kext](https://github.com/acidanthera/MacHyperVSupport) | 8.0.0 (10.4) | — | — | +| [CryptexFixup.kext](https://github.com/acidanthera/CryptexFixup) | 22.0.0 (13.0) | — | — | More complete list with legacy kexts is hosted [here](https://docs.google.com/spreadsheets/d/15S-ocrkm_VTUJpKxNII-YUyQFd5VYdjbe0DHlZVCQyM). Full Lilu plugin list with legacy kexts is hosted [here](https://github.com/acidanthera/Lilu/blob/master/KnownPlugins.md). For developers only. Acidanthera members are not affiliated with the authors of any kernel extensions but ones hosted at https://github.com/acidanthera. This list is provided for information purposes without warranty of any kind. diff --git a/Utilities/ocvalidate/KextInfo.c b/Utilities/ocvalidate/KextInfo.c index 6baffd06..5fbd0043 100644 --- a/Utilities/ocvalidate/KextInfo.c +++ b/Utilities/ocvalidate/KextInfo.c @@ -30,6 +30,7 @@ KEXT_PRECEDENCE mKextPrecedence[] = { { "AirportBrcmFixup.kext", "Lilu.kext" }, { "BrightnessKeys.kext", "Lilu.kext" }, { "CpuTscSync.kext", "Lilu.kext" }, + { "CryptexFixup.kext", "Lilu.kext" }, { "CPUFriend.kext", "Lilu.kext" }, { "CPUFriendDataProvider.kext", "CPUFriend.kext" }, { "DebugEnhancer.kext", "Lilu.kext" }, @@ -68,6 +69,7 @@ KEXT_INFO mKextInfo[] = { { "AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext", "", "Contents/Info.plist" }, { "BrightnessKeys.kext", "Contents/MacOS/BrightnessKeys", "Contents/Info.plist" }, { "CpuTscSync.kext", "Contents/MacOS/CpuTscSync", "Contents/Info.plist" }, + { "CryptexFixup.kext", "Contents/MacOS/CryptexFixup", "Contents/Info.plist" }, { "CPUFriend.kext", "Contents/MacOS/CPUFriend", "Contents/Info.plist" }, { "CPUFriendDataProvider.kext", "", "Contents/Info.plist" }, { "DebugEnhancer.kext", "Contents/MacOS/DebugEnhancer", "Contents/Info.plist" },