iMac9,1 MXM3 AMD GCN support

This commit is contained in:
Ausdauersportler
2023-03-15 00:42:20 +01:00
parent ea96c546ca
commit 8661fa339c
5 changed files with 19 additions and 8 deletions

View File

@@ -76,6 +76,7 @@ class Constants:
## Dortania
## https://github.com/dortania
self.backlight_injector_version = "1.1.0" # BacklightInjector
self.backlight_injectorA_version = "1.0.0" # BacklightInjector iMac9,1
self.smcspoof_version = "1.0.0" # SMC-Spoof
self.mce_version = "1.0.0" # AppleMCEReporterDisabler
self.btspoof_version = "1.0.0" # Bluetooth-Spoof
@@ -411,6 +412,10 @@ class Constants:
def backlight_injector_path(self):
return self.payload_kexts_path / Path(f"Misc/BacklightInjector-v{self.backlight_injector_version}.zip")
@property
def backlight_injectorA_path(self):
return self.payload_kexts_path / Path(f"Misc/BacklightInjectorA-v{self.backlight_injectorA_version}.zip")
@property
def cpufriend_path(self):
return self.payload_kexts_path / Path(f"Acidanthera/CPUFriend-v{self.cpufriend_version}-{self.kext_variant}.zip")