Contribute
Register

[README] Common (some unsolved) Problems in 10.12 Sierra

Backlight control already working on 10.12.4 if you follow the ProBook guide.
You probably just now updated to the latest github content...

Probably that's the case, since I scrutinized that guide before and after updating the system. Thanks Rehabman!
 

  1. Can anyone help me with getting the Azurewave AW-CE123H (BCM94352HMB) working with wifi?.

    I've installed FakePCIID.kext+FakePCIID_Broadcom_WiFi.kext to S/L/E but wifi still does not appear to be working.

    Bluetooth is working, after installing BrcmPatchRAM2.kext+BrcmFirmwareRepo.kext

    I've also edited

    IO80211Family.kext/Contents/Plugins/ AirPortBrcm4360.kext/Contents/Info.plist

    To add:
    pci14e4,43b1

    to item 2 (changed from the original option).

    I still can't get wifi to show or work. I think there's another step I need to do, but keep going round in circles and getting nowhere! I'd really appreciate any help/tips/advice!

    I'm running 10.12.5

  2. Additionally I've added the patch by "dark void" to clover config.plist:


    <dict>
    <key>Comment</key>
    <string>AirPortBrcm4360 - fcvo</string>
    <key>Disabled</key>
    <false/>
    <key>Find</key>
    <data>gflSqgAAdSk=</data>
    <key>Name</key>
    <string>AirPortBrcm4360</string>
    <key>Replace</key>
    <data>gflSqgAAZpA=</data>
    </dict>

    Wifi still does not even display on my hackintosh.

    Does anyone have any advice/tips?

 

  1. Can anyone help me with getting the Azurewave AW-CE123H (BCM94352HMB) working with wifi?.

    I've installed FakePCIID.kext+FakePCIID_Broadcom_WiFi.kext to S/L/E but wifi still does not appear to be working.

    Bluetooth is working, after installing BrcmPatchRAM2.kext+BrcmFirmwareRepo.kext

    I've also edited

    IO80211Family.kext/Contents/Plugins/ AirPortBrcm4360.kext/Contents/Info.plist

    To add:
    pci14e4,43b1

    to item 2 (changed from the original option).

    I still can't get wifi to show or work. I think there's another step I need to do, but keep going round in circles and getting nowhere! I'd really appreciate any help/tips/advice!

    I'm running 10.12.5

  2. Additionally I've added the patch by "dark void" to clover config.plist:


    <dict>
    <key>Comment</key>
    <string>AirPortBrcm4360 - fcvo</string>
    <key>Disabled</key>
    <false/>
    <key>Find</key>
    <data>gflSqgAAdSk=</data>
    <key>Name</key>
    <string>AirPortBrcm4360</string>
    <key>Replace</key>
    <data>gflSqgAAZpA=</data>
    </dict>

    Wifi still does not even display on my hackintosh.

    Does anyone have any advice/tips?

Read FAQ, "Problem Reporting"
https://www.tonymacx86.com/threads/faq-read-first-laptop-frequent-questions.164990/
 
This is it!
My u430 with 10.12.4 suffered from this problem (short duration lag after wake and after login).

My u430 has LVDS and a single HDMI.
I use ig-platform-id 0xa260006 with it. 0xa260006 has LVDS, 0105 DP, 0204 DP.
The HDMI is wired to 0204, so I patch that port for HDMI (to enable HDMI audio).
I also use the 'vbo' 9mb cursor bytes patch (even though it is not needed on my particular laptop... it is helpful on others).

So... before 10.12.4, I had these patches for com.apple.driver.AppleIntelFramebufferAzul:

Comment: 0x0a260006 9MB cursor bytes, vbo
Find: <0600260a 01030303 00000002 00003001 00006000>
Replace: <0600260a 01030303 00000002 00003001 00009000>

Comment: HDMI-audio, port 0204, 0x0a260005 0x0a260006
Find: <02040900 00040000 87000000>
Replace: <02040900 00080000 87000000>

Now the 0105 port comes before the 0204 port in the framebuffer, but we don't need the 0105 port as it is not connected to anything (and causing the lags).

So... strategy is to replace 0105 with 0204 and reduce the number of ports from 3 to 2.

We already know that in AppleIntelFramebufferCapri that 0x01660004 has only a single LVDS connector, so we can look to the header of that ig-platform-id data to discover what we need to reduce our ig-platform data in Azul from 3 ports to 2.

From AppleIntelFramebufferCapri 0x01660004:
04006601 01030101

And from AppleIntelFramebufferAzul 0x0a260006:
0600260A 01030303

So, there appears to be two counts at the end related to the number of connectors... plan to change them both...

New set of patches:

Comment: 0x0a260006 9MB cursor bytes (vbo), 2 ports only (RehabMan)
Find: <0600260a 01030303 00000002 00003001 00006000>
Replace: <0600260a 01030202 00000002 00003001 00009000>

Comment: 0x0a260006 disable 0204 port, change 0105 DP port to 0204 HDMI (RehabMan)
Find: <01050900 00040000 87000000 02040900 00040000 87000000>
Replace: <02040900 00080000 87000000 FF000000 01000000 40000000>

Result: No more lag after login and wake from sleep.


Hi Rehabman,

I had the same lag problem on my HD5500 using ig-platform-id 0x16260006.

I tried following your guide by removing one connector from the pipe count and putting port 204 (this is the port my Laptop is using for HDMI) into the place of port 105. After rebooting, the HDMI connection didn't work anymore but the lag was gone (I followed the steps from your post but just applying it for the Broadwell framebuffer/data). Then I figured out that when I don't remove the unused port from the pipe count and replacing

<01050B00 00040000 07050000 02040B00 00040000 07050000>

with

<FF000000 01000000 40000000 02040B00 00080000 07050000>

the HDMI connection works and there is no lag when logging and waking up after sleep.

The above patch is the only one needed. It also enables HDMI audio on port 204.
 
Hi Rehabman,

I had the same lag problem on my HD5500 using ig-platform-id 0x16260006.

I tried following your guide by removing one connector from the pipe count and putting port 204 (this is the port my Laptop is using for HDMI) into the place of port 105. After rebooting, the HDMI connection didn't work anymore but the lag was gone (I followed the steps from your post but just applying it for the Broadwell framebuffer/data). Then I figured out that when I don't remove the unused port from the pipe count and replacing

<01050B00 00040000 07050000 02040B00 00040000 07050000>

with

<FF000000 01000000 40000000 02040B00 00080000 07050000>

the HDMI connection works and there is no lag when logging and waking up after sleep.

The above patch is the only one needed. It also enables HDMI audio on port 204.

Yes, we discovered the same thing here:
https://www.tonymacx86.com/threads/...clover-uefi-10-11.168613/page-91#post-1508543
 
Hello. Such a problem. The charge / discharge indicator of the battery DOES NOT ALWAYS indicate the discharge level correctly. Sometimes it happens that the indicator hangs on some value, suppose 63% or 41% and everything, then the level does not decrease. And, accordingly, it is impossible to determine how much the battery is discharged. It helps only reboot. After reboot, the indicator shows the actual value.
 

Attachments

  • report.zip
    19.9 MB · Views: 104
I'm not planning to cover closed-source projects here (because without source, there is nothing we can do).



Hello rehabman, is there any method to activate cypress trackpad work ?. Currently my trackpad only works as a mouse
 
Back
Top