Add Innie Support

Closes https://github.com/dortania/OpenCore-Legacy-Patcher/issues/187
This commit is contained in:
Mykola Grymalyuk
2021-05-03 12:28:47 -06:00
parent ca4051b10d
commit 5bca1a0ad6
5 changed files with 27 additions and 1 deletions

View File

@@ -130,6 +130,7 @@ class BuildOpenCore:
("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),
("Innie.kext", self.constants.innie_version, self.constants.innie_path, lambda: self.model in self.model in ModelArray.MacPro71),
]:
self.enable_kext(name, version, path, check)