diff --git a/Docs/Changelog.md b/Docs/Changelog.md index 42b4ca7..690f6bd 100644 --- a/Docs/Changelog.md +++ b/Docs/Changelog.md @@ -1,5 +1,13 @@ OpenCore Changelog ================== +#### v0.8.2 +- Fixed `AppleCpuPmCfgLock` on macOS 13 +- Fixed `DummyPowerManagement` on macOS 13 +- Updated builtin firmware versions for SMBIOS and the rest +- Added macOS 13 support for `AvoidRuntimeDefrag` Booter quirk +- Added injected kext bundle version printing in DEBUG builds +- Added Linux compatibility for CreateVault scripts + #### v0.8.1 - Improved `ExtendBTFeatureFlags` quirk on newer macOS versions, thx @lvs1974 - Added notes about DMAR table and `ForceAquantiaEthernet`, thx @kokowski diff --git a/Docs/Configuration.pdf b/Docs/Configuration.pdf index a3d7847..5f8100e 100644 Binary files a/Docs/Configuration.pdf and b/Docs/Configuration.pdf differ diff --git a/EFI-Debug/BOOT/BOOTx64.efi b/EFI-Debug/BOOT/BOOTx64.efi index d988f6a..8ba3aec 100644 Binary files a/EFI-Debug/BOOT/BOOTx64.efi and b/EFI-Debug/BOOT/BOOTx64.efi differ diff --git a/EFI-Debug/OC/Drivers/AudioDxe.efi b/EFI-Debug/OC/Drivers/AudioDxe.efi index 987555f..46d1148 100644 Binary files a/EFI-Debug/OC/Drivers/AudioDxe.efi and b/EFI-Debug/OC/Drivers/AudioDxe.efi differ diff --git a/EFI-Debug/OC/Drivers/OpenRuntime.efi b/EFI-Debug/OC/Drivers/OpenRuntime.efi index fd1f2f6..133b39f 100644 Binary files a/EFI-Debug/OC/Drivers/OpenRuntime.efi and b/EFI-Debug/OC/Drivers/OpenRuntime.efi differ diff --git a/EFI-Debug/OC/Drivers/ResetNvramEntry.efi b/EFI-Debug/OC/Drivers/ResetNvramEntry.efi index 66f568c..b8b898a 100644 Binary files a/EFI-Debug/OC/Drivers/ResetNvramEntry.efi and b/EFI-Debug/OC/Drivers/ResetNvramEntry.efi differ diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist index 8e3841a..3759f34 100644 --- a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist +++ b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G415 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.6.0 + 1.6.1 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.6.0 + 1.6.1 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12D4e + 13C100 DTPlatformName macosx DTPlatformVersion - 11.1 + 12.1 DTSDKBuild - 20C63 + 21C46 DTSDKName - macosx11.1 + macosx12.1 DTXcode - 1240 + 1321 DTXcodeBuild - 12D4e + 13C100 IOKitPersonalities as.vit9696.Lilu diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu index 36102f3..f731b8a 100755 Binary files a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu and b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu differ diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp index bb1bf2a..e0588e4 100644 --- a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp +++ b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_patcher.hpp @@ -591,29 +591,32 @@ public: return routeMultipleShort(id, requests, N, start, size, kernelRoute, force); } + /** + * Find one pattern with optional masking within a block of memory + * + * @param pattern pattern to search + * @param patternMask pattern mask + * @param patternSize size of pattern + * @param data a block of memory + * @param dataSize size of memory + * @param dataOffset data offset, to be set by this function + * + * @return true if pattern is found in data + */ + EXPORT static bool findPattern(const void *pattern, const void *patternMask, size_t patternSize, const void *data, size_t dataSize, size_t *dataOffset); + + /** + * Simple find and replace with masking in kernel memory. + */ + EXPORT static bool findAndReplaceWithMask(void *data, size_t dataSize, const void *find, size_t findSize, const void *findMask, size_t findMaskSize, const void *replace, size_t replaceSize, const void *replaceMask, size_t replaceMaskSize, size_t count=0, size_t skip=0); + /** * Simple find and replace in kernel memory. */ static inline bool findAndReplace(void *data, size_t dataSize, const void *find, size_t findSize, const void *replace, size_t replaceSize) { - void *res; - if (UNLIKELY((res = lilu_os_memmem(data, dataSize, find, findSize)) != nullptr)) { - if (UNLIKELY(MachInfo::setKernelWriting(true, KernelPatcher::kernelWriteLock) != KERN_SUCCESS)) { - SYSLOG("patcher", "failed to obtain write permissions for f/r"); - return false; - } - - lilu_os_memcpy(res, replace, replaceSize); - - if (UNLIKELY(MachInfo::setKernelWriting(false, KernelPatcher::kernelWriteLock) != KERN_SUCCESS)) { - SYSLOG("patcher", "failed to restore write permissions for f/r"); - } - - return true; - } - - return false; + return findAndReplaceWithMask(data, dataSize, find, findSize, nullptr, 0, replace, replaceSize, nullptr, 0, 0, 0); } - + /** * Simple find and replace in kernel memory but require both `find` and `replace` buffers to have the same length */ @@ -622,6 +625,14 @@ public: return findAndReplace(data, dataSize, find, N, replace, N); } + /** + * Simple find and replace with masking in kernel memory but require both `find` and `replace` buffers and masking buffers to have the same length + */ + template + static inline bool findAndReplaceWithMask(void *data, size_t dataSize, const uint8_t (&find)[N], const uint8_t (&findMask)[N], const uint8_t (&replace)[N], const uint8_t (&replaceMask)[N], size_t count, size_t skip) { + return findAndReplaceWithMask(data, dataSize, find, N, findMask, N, replace, N, replaceMask, N, count, skip); + } + private: /** * Jump type for routing @@ -707,6 +718,26 @@ private: */ bool routeMultipleInternal(size_t id, RouteRequest *requests, size_t num, mach_vm_address_t start=0, size_t size=0, bool kernelRoute=true, bool force=false, JumpType jumpType=JumpType::Auto); + /** + * Simple find and replace with masking in kernel memory + * + * @param data kernel memory + * @param dataSize size of kernel memory + * @param find find pattern + * @param findSize size of find pattern + * @param findMask find masking pattern + * @param findMaskSize size of find masking pattern + * @param replace replace pattern + * @param replaceSize size of replace pattern + * @param replaceMask replace masking pattern + * @param replaceMaskSize repalce masking pattern + * @param count maximum times of patching + * @param skip number of skipping times before performing replacement + * + * @return true if the finding and replacing performance is successful + */ + static bool findAndReplaceWithMaskInternal(void *data, size_t dataSize, const void *find, size_t findSize, const void *findMask, size_t findMaskSize, const void *replace, size_t replaceSize, const void *replaceMask, size_t replaceMaskSize, size_t count, size_t skip); + #ifdef LILU_KEXTPATCH_SUPPORT /** * Process loaded kext diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp index 68a38df..ef64a59 100644 --- a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp +++ b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_user.hpp @@ -610,6 +610,26 @@ private: */ static constexpr const char *bigSurSharedCacheLegacy {"/System/Library/dyld/dyld_shared_cache_x86_64"}; + /** + * DYLD shared cache map path on Haswell+ on Ventura + */ + static constexpr const char *venturaSharedCacheMapHaswell {"/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h.map"}; + + /** + * DYLD shared cache map path on older systems on Ventura + */ + static constexpr const char *venturaSharedCacheMapLegacy {"/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64.map"}; + + /** + * DYLD shared cache path on Haswell+ on Ventura + */ + static constexpr const char *venturaSharedCacheHaswell {"/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64h"}; + + /** + * DYLD shared cache path on older systems on Ventura + */ + static constexpr const char *venturaSharedCacheLegacy {"/System/Volumes/Preboot/Cryptexes/OS/System/Library/dyld/dyld_shared_cache_x86_64"}; + }; #endif /* kern_user_hpp */ diff --git a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp index a731de9..cbc2181 100644 --- a/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp +++ b/EFI-Debug/OC/Kexts/Lilu.kext/Contents/Resources/Headers/kern_util.hpp @@ -393,6 +393,7 @@ enum KernelVersion { Catalina = 19, BigSur = 20, Monterey = 21, + Ventura = 22, }; /** diff --git a/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/Info.plist b/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/Info.plist index 8e21317..1f0b054 100644 --- a/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/Info.plist +++ b/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G417 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.2.9 + 1.3.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.2.9 + 1.3.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12E507 + 13C100 DTPlatformName macosx DTPlatformVersion - 11.3 + 12.1 DTSDKBuild - 20E214 + 21C46 DTSDKName - macosx11.3 + macosx12.1 DTXcode - 1251 + 1321 DTXcodeBuild - 12E507 + 13C100 IOKitPersonalities as.vit9696.SMCProcessor diff --git a/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor b/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor index 9a563a8..c386814 100755 Binary files a/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor and b/EFI-Debug/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor differ diff --git a/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist b/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist index a5baae8..8929bfe 100644 --- a/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist +++ b/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G417 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.2.9 + 1.3.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.2.9 + 1.3.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12E507 + 13C100 DTPlatformName macosx DTPlatformVersion - 11.3 + 12.1 DTSDKBuild - 20E214 + 21C46 DTSDKName - macosx11.3 + macosx12.1 DTXcode - 1251 + 1321 DTXcodeBuild - 12E507 + 13C100 IOKitPersonalities ru.joedm.SMCSuperIO diff --git a/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO b/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO index 5463ae8..59cbebf 100755 Binary files a/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO and b/EFI-Debug/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO differ diff --git a/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/Info.plist b/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/Info.plist index 23577d8..0d29b67 100644 --- a/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/Info.plist +++ b/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G417 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.2.9 + 1.3.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.2.9 + 1.3.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12E507 + 13C100 DTPlatformName macosx DTPlatformVersion - 11.3 + 12.1 DTSDKBuild - 20E214 + 21C46 DTSDKName - macosx11.3 + macosx12.1 DTXcode - 1251 + 1321 DTXcodeBuild - 12E507 + 13C100 IOKitPersonalities as.vit9696.VirtualSMC diff --git a/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC b/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC index bdf96ae..b3c6894 100755 Binary files a/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC and b/EFI-Debug/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC differ diff --git a/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/Info.plist b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/Info.plist index acddc8b..c0e5741 100644 --- a/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/Info.plist +++ b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.5.9 + 1.6.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,7 +25,7 @@ MacOSX CFBundleVersion - 1.5.9 + 1.6.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild diff --git a/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen index 72f421f..c441b79 100755 Binary files a/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen and b/EFI-Debug/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen differ diff --git a/EFI-Debug/OC/OpenCore.efi b/EFI-Debug/OC/OpenCore.efi index 9fd1117..dd34655 100644 Binary files a/EFI-Debug/OC/OpenCore.efi and b/EFI-Debug/OC/OpenCore.efi differ diff --git a/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist b/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist index 8e3841a..3759f34 100644 --- a/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist +++ b/EFI-Release/OC/Kexts/Lilu.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G415 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.6.0 + 1.6.1 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.6.0 + 1.6.1 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12D4e + 13C100 DTPlatformName macosx DTPlatformVersion - 11.1 + 12.1 DTSDKBuild - 20C63 + 21C46 DTSDKName - macosx11.1 + macosx12.1 DTXcode - 1240 + 1321 DTXcodeBuild - 12D4e + 13C100 IOKitPersonalities as.vit9696.Lilu diff --git a/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu b/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu index 4284cd1..d0e9c9e 100755 Binary files a/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu and b/EFI-Release/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu differ diff --git a/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/Info.plist b/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/Info.plist index 8e21317..1f0b054 100644 --- a/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/Info.plist +++ b/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G417 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.2.9 + 1.3.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.2.9 + 1.3.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12E507 + 13C100 DTPlatformName macosx DTPlatformVersion - 11.3 + 12.1 DTSDKBuild - 20E214 + 21C46 DTSDKName - macosx11.3 + macosx12.1 DTXcode - 1251 + 1321 DTXcodeBuild - 12E507 + 13C100 IOKitPersonalities as.vit9696.SMCProcessor diff --git a/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor b/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor index 2914f33..d9bbf0a 100755 Binary files a/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor and b/EFI-Release/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor differ diff --git a/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist b/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist index a5baae8..8929bfe 100644 --- a/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist +++ b/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G417 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.2.9 + 1.3.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.2.9 + 1.3.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12E507 + 13C100 DTPlatformName macosx DTPlatformVersion - 11.3 + 12.1 DTSDKBuild - 20E214 + 21C46 DTSDKName - macosx11.3 + macosx12.1 DTXcode - 1251 + 1321 DTXcodeBuild - 12E507 + 13C100 IOKitPersonalities ru.joedm.SMCSuperIO diff --git a/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO b/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO index cb91ba9..2cdba65 100755 Binary files a/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO and b/EFI-Release/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO differ diff --git a/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/Info.plist b/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/Info.plist index 23577d8..0d29b67 100644 --- a/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/Info.plist +++ b/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 20G417 + 20G624 CFBundleDevelopmentRegion en CFBundleExecutable @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.2.9 + 1.3.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,23 +25,23 @@ MacOSX CFBundleVersion - 1.2.9 + 1.3.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 12E507 + 13C100 DTPlatformName macosx DTPlatformVersion - 11.3 + 12.1 DTSDKBuild - 20E214 + 21C46 DTSDKName - macosx11.3 + macosx12.1 DTXcode - 1251 + 1321 DTXcodeBuild - 12E507 + 13C100 IOKitPersonalities as.vit9696.VirtualSMC diff --git a/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC b/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC index dbe3b8b..da8cc65 100755 Binary files a/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC and b/EFI-Release/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC differ diff --git a/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/Info.plist b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/Info.plist index acddc8b..c0e5741 100644 --- a/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/Info.plist +++ b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType KEXT CFBundleShortVersionString - 1.5.9 + 1.6.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -25,7 +25,7 @@ MacOSX CFBundleVersion - 1.5.9 + 1.6.0 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild diff --git a/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen index 34448a8..f451079 100755 Binary files a/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen and b/EFI-Release/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen differ diff --git a/EFI-Release/OC/OpenCore.efi b/EFI-Release/OC/OpenCore.efi index ab46be6..3849116 100644 Binary files a/EFI-Release/OC/OpenCore.efi and b/EFI-Release/OC/OpenCore.efi differ diff --git a/README.md b/README.md index 2b50be4..9abdb7e 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ Note|Description :----|:---- Initial macOS Support|macOS 10.15, Catalina. -- Opencore version: 0.8.1 -- Release date: 06/06/2022 +- Opencore version: 0.8.2 +- Release date: 04/07/2022 # Basic Steps diff --git a/Utils/macrecovery/boards.json b/Utils/macrecovery/boards.json index 9719029..21f3b1c 100644 --- a/Utils/macrecovery/boards.json +++ b/Utils/macrecovery/boards.json @@ -1,6 +1,6 @@ { "Mac-EE2EBD4B90B839A8": "latest", - "Mac-BE0E8AC46FE800CC": "11.6.6", + "Mac-BE0E8AC46FE800CC": "11.6.7", "Mac-9AE82516C7C6B903": "latest", "Mac-942452F5819B1C1B": "10.13.6", "Mac-942C5DF58193131B": "10.13.6", @@ -8,8 +8,8 @@ "Mac-742912EFDBEE19B3": "10.13.6", "Mac-66F35F19FE2A0D05": "10.15.7", "Mac-2E6FAB96566FE58C": "10.15.7", - "Mac-35C1E88140C3E6CF": "11.6.6", - "Mac-7DF21CB3ED6977E5": "11.6.6", + "Mac-35C1E88140C3E6CF": "11.6.7", + "Mac-7DF21CB3ED6977E5": "11.6.7", "Mac-9F18E312C5C2BF0B": "latest", "Mac-937CB26E2E02BB01": "latest", "Mac-827FAC58A8FDFA22": "latest", @@ -17,9 +17,9 @@ "Mac-0CFF9C7C2B63DF8D": "latest", "Mac-C3EC7CD22292981F": "10.15.7", "Mac-AFD8A9D944EA4843": "10.15.7", - "Mac-189A3D4F975D5FFC": "11.6.6", - "Mac-3CBD00234E554E41": "11.6.6", - "Mac-2BD1B31983FE1663": "11.6.6", + "Mac-189A3D4F975D5FFC": "11.6.7", + "Mac-3CBD00234E554E41": "11.6.7", + "Mac-2BD1B31983FE1663": "11.6.7", "Mac-06F11FD93F0323C5": "latest", "Mac-06F11F11946D27C5": "latest", "Mac-E43C1C25D4880AD6": "latest", @@ -61,8 +61,8 @@ "Mac-031B6874CF7F642A": "10.15.7", "Mac-27ADBB7B4CEE8E61": "10.15.7", "Mac-77EB7D7DAF985301": "10.15.7", - "Mac-81E3E92DD6088272": "11.6.6", - "Mac-42FD25EABCABB274": "11.6.6", + "Mac-81E3E92DD6088272": "11.6.7", + "Mac-42FD25EABCABB274": "11.6.7", "Mac-A369DDC4E67F1C45": "latest", "Mac-FFE5EF870D7BA81A": "latest", "Mac-DB15BD556843C820": "latest", diff --git a/Utils/ocvalidate/ocvalidate b/Utils/ocvalidate/ocvalidate index 179a2fd..8b4219d 100755 Binary files a/Utils/ocvalidate/ocvalidate and b/Utils/ocvalidate/ocvalidate differ diff --git a/Utils/ocvalidate/ocvalidate.exe b/Utils/ocvalidate/ocvalidate.exe index bfebe6e..bd32c43 100755 Binary files a/Utils/ocvalidate/ocvalidate.exe and b/Utils/ocvalidate/ocvalidate.exe differ diff --git a/Utils/ocvalidate/ocvalidate.linux b/Utils/ocvalidate/ocvalidate.linux index 377defa..f373f7c 100755 Binary files a/Utils/ocvalidate/ocvalidate.linux and b/Utils/ocvalidate/ocvalidate.linux differ