diff --git a/CHANGELOG.md b/CHANGELOG.md index c6d1c17c3..dc8c6553a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - Avoids accidental use of non-Metal Web Drivers on Kepler GPUs - Resolve silent auto patcher crash when new OCLP version is available - Implement [`py_sip_xnu`](https://github.com/khronokernel/py_sip_xnu) module +- Resolve Content Caching Patch Regression - Increment Binaries: - OpenCorePkg 0.8.7 - release - FeatureUnlock 1.1.1 - release diff --git a/resources/build/misc.py b/resources/build/misc.py index 7cfaff823..a4c78c038 100644 --- a/resources/build/misc.py +++ b/resources/build/misc.py @@ -79,7 +79,7 @@ class build_misc: patch_args = "" if support.build_support(self.model, self.constants, self.config).get_item_by_kv(self.config["Kernel"]["Patch"], "Comment", "Reroute kern.hv_vmm_present patch (1)")["Enabled"] is True and self.constants.set_content_caching is True: print("- Fixing Content Caching support") - patch_args += "content-caching," + patch_args += "asset," if patch_args.endswith(","): patch_args = patch_args[:-1]