build: Revert AppleALC update

This commit is contained in:
Mykola Grymalyuk
2022-12-10 09:52:41 -07:00
parent 1c24cfee24
commit c707047530
7 changed files with 7 additions and 1 deletions

View File

@@ -5,6 +5,9 @@
- Fixes link rate for PCIe 3.0 devices on MacPro3,1 - Fixes link rate for PCIe 3.0 devices on MacPro3,1
- Resolve AppleIntelCPUPowerManagement Panic in Safe Mode - Resolve AppleIntelCPUPowerManagement Panic in Safe Mode
- Applicable for pre-Haswell Macs on Ventura - Applicable for pre-Haswell Macs on Ventura
- Revert AppleALC 1.7.6 update back to 1.6.3
- Resolves audio issues on certain Intel HDEF devices
- Regression currently being investigated within AppleALC
## 0.5.2 ## 0.5.2
- Ventura Specific Updates: - Ventura Specific Updates:

Binary file not shown.

Binary file not shown.

View File

@@ -41,6 +41,9 @@ class build_opencore:
support.build_support(self.model, self.constants, self.config).enable_kext("Lilu.kext", self.constants.lilu_version, self.constants.lilu_path) support.build_support(self.model, self.constants, self.config).enable_kext("Lilu.kext", self.constants.lilu_version, self.constants.lilu_path)
self.config["Kernel"]["Quirks"]["DisableLinkeditJettison"] = True self.config["Kernel"]["Quirks"]["DisableLinkeditJettison"] = True
# Due to regression in AppleALC 1.6.4+, temporarily use 1.6.3 and set override
self.config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["boot-args"] += "-lilubetaall"
# Call support functions # Call support functions
firmware.build_firmware(self.model, self.constants, self.config).build() firmware.build_firmware(self.model, self.constants, self.config).build()
wired.build_wired(self.model, self.constants, self.config).build() wired.build_wired(self.model, self.constants, self.config).build()

View File

@@ -36,7 +36,7 @@ class Constants:
self.whatevergreen_version = "1.6.1" # WhateverGreen self.whatevergreen_version = "1.6.1" # WhateverGreen
self.airportbcrmfixup_version = "2.1.6" # AirPortBrcmFixup self.airportbcrmfixup_version = "2.1.6" # AirPortBrcmFixup
self.nvmefix_version = "1.0.9" # NVMeFix self.nvmefix_version = "1.0.9" # NVMeFix
self.applealc_version = "1.7.6" # AppleALC self.applealc_version = "1.6.3" # AppleALC
self.restrictevents_version = "1.0.9" # RestrictEvents self.restrictevents_version = "1.0.9" # RestrictEvents
self.featureunlock_version = "1.1.0" # FeatureUnlock self.featureunlock_version = "1.1.0" # FeatureUnlock
self.debugenhancer_version = "1.0.7" # DebugEnhancer self.debugenhancer_version = "1.0.7" # DebugEnhancer