Skip to content

Commit e5fd984

Browse files
committed
Fix audio support on iMac7,1 and iMac8,1
1 parent 0a0a59f commit e5fd984

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- Fix NightShift accidentally disabling on Minimal SMBIOS configs
1313
- Fix iMac9,1 audio support
1414
- Heavily expand Graphics ID list
15-
- Fix iMac7,1 audio support
15+
- Fix iMac7,1 and iMac8,1 audio support
1616
- Work-around Bluetooth Kernel Panic on Apple's Bluetooth 2.0 Controllers (USB 05AC:8206)
1717
- Affects iMac7,1 and MacPro3,1
1818
- Fix iMac external display support

OpenCore-Patcher.command

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ system_profiler SPHardwareDataType | grep 'Model Identifier'
160160
- Nvidia: Tesla - Fermi (8000-500 series)
161161
- Intel: Ironlake - Sandy Bridge
162162
- AMD: TeraScale 1 (2000-4000 series)
163+
- Audio support for iMac7,1 and iMac8,1
163164
164165
WARNING: Root Volume Patching is still in active development, please
165166
have all important user data backed up. Note when the system volume

Resources/ModelArray.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@
268268
"Macmini5,1",
269269
"Macmini5,2",
270270
"Macmini5,3",
271-
"iMac7,1",
272-
"iMac8,1",
271+
#"iMac7,1",
272+
#"iMac8,1",
273273
"iMac9,1",
274274
"iMac10,1",
275275
"iMac11,1",
@@ -1014,5 +1014,6 @@
10141014
]
10151015

10161016
AddVolumeControl = [
1017+
"AppleHDA.kext",
10171018
"IOAudioFamily.kext",
10181019
]

Resources/SysPatch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def patch_root_vol(self):
214214
self.gpu_accel_patches_11()
215215
rebuild_required = True
216216

217-
if self.model == "iMac7,1":
217+
if self.model in ["iMac7,1", "iMac8,1"]:
218218
print("- Fixing Volume Control Support")
219219
self.add_new_binaries(ModelArray.AddVolumeControl, self.constants.audio_path)
220220

0 commit comments

Comments
 (0)