Contribute
Register

[Guide] HP ProBook/EliteBook/Zbook using Clover UEFI hotpatch (10.11)

Status
Not open for further replies.
Read post #1, "Problem Reporting".

Note that there is a custom USB SSDT for 8x70. Not sure why you think there isn't.

You have the SSDT installed.. SSDT-USB-8x70.aml. It is doing what we expect...

You can try experimenting with different portType for HP23 (look in the SSDT-USB-8x70.aml). Currently we have it set to 4, but really we do not know the meaning. The value 4 was found to eliminate some problems with camera detection after sleep. You can try other values, or eliminate it completely.
 
You have the SSDT installed.. SSDT-USB-8x70.aml. It is doing what we expect...

You can try experimenting with different portType for HP23 (look in the SSDT-USB-8x70.aml). Currently we have it set to 4, but really we do not know the meaning. The value 4 was found to eliminate some problems with camera detection after sleep. You can try other values, or eliminate it completely.

I'll do that. Yes, I did this build about two weeks ago and put it down for a while. I see the SSDT-USB-8x70.aml is a very recent add. After you said it was there, I installed. Without it, no video in FaceTime, with it no video in FaceTime. This issue seems unaffected by sleep - that is, it functions in PhotoBooth just fine, all the time, even after sleep.

As I had mentioned, before installing the patches and SMBIOS fixes, the video was detected, and was flawless, perfect HD video.

Thanks Rehabman for your help, I'll begin experimenting and let you know what I find.

Other 8470p users - do you have a similar problem?
 
Code:
Method (SBTC, 3, NotSerialized)
{  
  Store ("Enter SetBatteryControl", Debug)
  Acquire (ECMX, 0xFFFF)
  ...
It seems all _Qxx method which are already exist it related to BatteryControl....
So, I need add extra _Qxx method to WNIC or Keyboard?
Code:
Method (SBTC, 3, NotSerialized)
{  
  Store ("Enter SetBatteryControl", Debug)
  Acquire (ECMX, 0xFFFF)
  ...
It seems all _Qxx method which are already exist it related to BatteryControl....
So, I need add extra _Qxx method to WNIC or Keyboard?

Not possible to comment without native ACPI. Read post #1, "Problem Reporting".
 
Why are you installing 10.11.3? Current version is 10.11.5. From where did you download OS X?

And when reporting a problem, you must provide all files/output as requested in post #1, "Problem Reporting".

RehabMan, I may still using the old download file (from app store months ago) anyway, I download 10.11.5 and done install, but the result was same. The improvement I can see is, when I do cache rebuild, AppleHDA.kext shown up.

I tried follow your guide to rebuild 2 times but both same result. After the 1st time fail, I now have a backup of vanilla AppleHDA.kext, but I not yet re-patch it again.

Please see below the command output. I see no out for command kextstat|grep -y appleintelcpu, not sure if it cause the problem and I dunno where I may missed.

thank you again!!
Kent



kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y acpiplat
13 2 0xffffff7f82d6c000 0x66000 0x66000 com.apple.driver.AppleACPIPlatform (4.0) A29C7512-D3A8-3AED-9721-3A5FF1A32EB2 <12 11 7 6 5 4 3 1>
kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y appleintelcpu
kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y applelpc
99 0 0xffffff7f82758000 0x3000 0x3000 com.apple.driver.AppleLPC (3.1) 32BDCF9F-0473-32D4-9DAE-F523EFB2D244 <98 12 5 4 3>
kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y applehda
101 1 0xffffff7f82a49000 0x1e000 0x1e000 com.apple.driver.AppleHDAController (274.9) BAE4F922-DD74-3447-A5C1-BFC33B8C0A3E <100 93 74 12 7 6 5 4 3 1>
118 0 0xffffff7f82bb5000 0xb3000 0xb3000 com.apple.driver.AppleHDA (274.9) 75610131-FB46-3A0E-B758-14CEBEAF94AE <117 101 100 93 78 74 12 11 6 5 4 3 1>
119 0 0xffffff7f82a45000 0x2000 0x2000 com.apple.driver.AppleHDAHardwareConfigDriver (274.9) F688DB20-5ECB-31A8-9F91-3062E15035D6 <4 3>

kenneths-MacBook-Pro-2:probook.git kenneth$ ls -l /System/Library/Extensions/AppleHDA.kext/Contents/Resources/*.zml*
-rw-r--r-- 1 root wheel 5223 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/Platforms.zml.zlib
-rw-r--r-- 1 root wheel 880 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout12.zml.zlib
-rw-r--r-- 1 root wheel 880 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout13.zml.zlib
-rw-r--r-- 1 root wheel 350 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout17.zml.zlib
-rw-r--r-- 1 root wheel 884 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout18.zml.zlib
-rw-r--r-- 1 root wheel 880 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout19.zml.zlib
-rw-r--r-- 1 root wheel 1815 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout3.zml.zlib
-rw-r--r-- 1 root wheel 1830 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout4.zml.zlib
-rw-r--r-- 1 root wheel 1102 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout5.zml.zlib
-rw-r--r-- 1 root wheel 1839 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout6.zml.zlib


kenneths-MacBook-Pro-2:probook.git kenneth$ sudo touch /System/Library/Extensions && sudo kextcache -u /
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Trackpad.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Mouse.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Keyboard.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Controller.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext USBInjectAll.kext
kext file:///Library/Extensions/JMicronATA.kext/ is in hash exception list, allowing to load
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext JMB38X.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext IOath3kfrmwr.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext IntelMausiEthernet.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext IntelBacklight.kext
kext file:///Library/Extensions/HSSDBlockStorage.kext/ is in hash exception list, allowing to load
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakeSMC.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_XHCIMux.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_Intel_HDMI_Audio.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_Intel_HD_Graphics.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_Broadcom_WiFi.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext CodecCommander.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext BrcmPatchRAM2.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext BrcmFirmwareRepo.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext ACPIPoller.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext ACPIBatteryManager.kext
kext-dev-mode allowing invalid signature -67054 0xFFFFFFFFFFFEFA12 for kext AppleHDA.kext
 

Attachments

  • ioreg.zip
    509.1 KB · Views: 74
  • CLOVER.zip
    2.6 MB · Views: 74
  • RehabMan.zip
    65 KB · Views: 78
RehabMan, I may still using the old download file (from app store months ago) anyway, I download 10.11.5 and done install, but the result was same. The improvement I can see is, when I do cache rebuild, AppleHDA.kext shown up.

I tried follow your guide to rebuild 2 times but both same result. After the 1st time fail, I now have a backup of vanilla AppleHDA.kext, but I not yet re-patch it again.

Please see below the command output. I see no out for command kextstat|grep -y appleintelcpu, not sure if it cause the problem and I dunno where I may missed.

thank you again!!
Kent



kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y acpiplat
13 2 0xffffff7f82d6c000 0x66000 0x66000 com.apple.driver.AppleACPIPlatform (4.0) A29C7512-D3A8-3AED-9721-3A5FF1A32EB2 <12 11 7 6 5 4 3 1>
kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y appleintelcpu
kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y applelpc
99 0 0xffffff7f82758000 0x3000 0x3000 com.apple.driver.AppleLPC (3.1) 32BDCF9F-0473-32D4-9DAE-F523EFB2D244 <98 12 5 4 3>
kenneths-MacBook-Pro-2:probook.git kenneth$ kextstat|grep -y applehda
101 1 0xffffff7f82a49000 0x1e000 0x1e000 com.apple.driver.AppleHDAController (274.9) BAE4F922-DD74-3447-A5C1-BFC33B8C0A3E <100 93 74 12 7 6 5 4 3 1>
118 0 0xffffff7f82bb5000 0xb3000 0xb3000 com.apple.driver.AppleHDA (274.9) 75610131-FB46-3A0E-B758-14CEBEAF94AE <117 101 100 93 78 74 12 11 6 5 4 3 1>
119 0 0xffffff7f82a45000 0x2000 0x2000 com.apple.driver.AppleHDAHardwareConfigDriver (274.9) F688DB20-5ECB-31A8-9F91-3062E15035D6 <4 3>

kenneths-MacBook-Pro-2:probook.git kenneth$ ls -l /System/Library/Extensions/AppleHDA.kext/Contents/Resources/*.zml*
-rw-r--r-- 1 root wheel 5223 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/Platforms.zml.zlib
-rw-r--r-- 1 root wheel 880 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout12.zml.zlib
-rw-r--r-- 1 root wheel 880 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout13.zml.zlib
-rw-r--r-- 1 root wheel 350 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout17.zml.zlib
-rw-r--r-- 1 root wheel 884 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout18.zml.zlib
-rw-r--r-- 1 root wheel 880 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout19.zml.zlib
-rw-r--r-- 1 root wheel 1815 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout3.zml.zlib
-rw-r--r-- 1 root wheel 1830 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout4.zml.zlib
-rw-r--r-- 1 root wheel 1102 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout5.zml.zlib
-rw-r--r-- 1 root wheel 1839 Jun 30 23:12 /System/Library/Extensions/AppleHDA.kext/Contents/Resources/layout6.zml.zlib


kenneths-MacBook-Pro-2:probook.git kenneth$ sudo touch /System/Library/Extensions && sudo kextcache -u /
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Trackpad.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Mouse.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Keyboard.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext VoodooPS2Controller.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext USBInjectAll.kext
kext file:///Library/Extensions/JMicronATA.kext/ is in hash exception list, allowing to load
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext JMB38X.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext IOath3kfrmwr.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext IntelMausiEthernet.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext IntelBacklight.kext
kext file:///Library/Extensions/HSSDBlockStorage.kext/ is in hash exception list, allowing to load
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakeSMC.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_XHCIMux.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_Intel_HDMI_Audio.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_Intel_HD_Graphics.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID_Broadcom_WiFi.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext FakePCIID.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext CodecCommander.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext BrcmPatchRAM2.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext BrcmFirmwareRepo.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext ACPIPoller.kext
kext-dev-mode allowing invalid signature -67062 0xFFFFFFFFFFFEFA0A for kext ACPIBatteryManager.kext
kext-dev-mode allowing invalid signature -67054 0xFFFFFFFFFFFEFA12 for kext AppleHDA.kext

According to ioreg, audio is working.
 
@dinokent444, I made the mistake of thinking my audio was not working when I didn't see the audio icon, are you sure you checked the checkbox under System Preferences > Sound, Show volume in menubar? Mine was unticked and was the reason why the speaker icon was not showing in the menubar.
 
Ideas are in the pull request at github. Your profile seems to indicate Intel graphics...
I Have intel Graphics as well as AMD radeon, I don't know what "Pull request" means? Can you post a link?
 
I Have intel Graphics as well as AMD radeon, I don't know what "Pull request" means? Can you post a link?

Check pull requests tab at the github linked by post #1. But it won't help you as it is unlikely you have dedicated AMD.

Please fix your profile to indicate both graphics devices (as requested in the main Clover laptop guide, linked from post #1).

No possibility of AMD graphics working if you have switched dual-GPU (which is the typical configuration for your laptop with dual-GPU).
 
Status
Not open for further replies.
Back
Top