diff --git a/Changelog.md b/Changelog.md index a5ecbc230e77dd05cfa99506831832f1377c1e13..8f1fc4b02259d390e4fd202c7024b676622a14e6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,7 @@ OpenCore Changelog - Prevented unwanted clear screen to console background colour when in graphics mode - Added `ResizeUsePciRbIo` quirk to workaround broken PciIo on some UEFI firmwares, thx @xCuri0 - Fixed crash while using `SysReport` on older Atom systems +- Fixed kexts without a Contents folder not being patched during a cacheless boot #### v0.8.8 - Updated underlying EDK II package to edk2-stable202211 diff --git a/Library/OcAppleKernelLib/CachelessContext.c b/Library/OcAppleKernelLib/CachelessContext.c index 6c97e5ece1712baed3c8182178338cdd6e59f964..252602396464d3d119d8fef256c58a4156ae59d9 100644 --- a/Library/OcAppleKernelLib/CachelessContext.c +++ b/Library/OcAppleKernelLib/CachelessContext.c @@ -398,7 +398,7 @@ ScanExtensions ( L"%s\\%s\\%s%s", FilePath, FileInfo->FileName, - UseContents ? L"Contents\\MacOS\\" : L"\\", + UseContents ? L"Contents\\MacOS\\" : L"", BuiltinKext->BinaryFileName ); if (EFI_ERROR (Status)) {