build: Fix Content Caching argument

This commit is contained in:
Mykola Grymalyuk
2022-12-15 19:57:08 -07:00
parent 27d1ee3b02
commit 90310fcaca
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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]