Add Sidecar support

This commit is contained in:
Mykola Grymalyuk
2021-05-02 22:59:13 -06:00
parent 85fc1d6627
commit e5aea82b6f
7 changed files with 46 additions and 2 deletions

View File

@@ -128,6 +128,8 @@ class BuildOpenCore:
("AppleALC.kext", self.constants.applealc_version, self.constants.applealc_path, lambda: self.model in ModelArray.LegacyAudio or self.model in ModelArray.MacPro71),
# IDE patch
("AppleIntelPIIXATA.kext", self.constants.piixata_version, self.constants.piixata_path, lambda: self.model in ModelArray.IDEPatch),
# Misc
("SidecarFixup.kext", self.constants.sidecarfixup_version, self.constants.sidecarfixup_path, lambda: self.model in ModelArray.SidecarPatch),
]:
self.enable_kext(name, version, path, check)