Jump to content

kali2000

Members
  • Posts

    39
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by kali2000

  1. In a post dated Oct 17, 2019 from a guy called Taeyon at a forum not allowed here. I can send you the link by PM. He said:

    "[...]

    AppleALC 1.4.3 has a fix (workaround actually to disable HDMI/DP audio to avoid the kernel panic), but there isn't a release yet. So I have built it manually with the HDMI/DP audio being disabled always. For this, please find the attached kext. In my case, this has addressed the kernel panic problem.

    FYI, I have attached the code changes I have made based on the 1.4.3 code base. Also, I am asking the AppleALC maintainer to use a boot argument so that it'd be easier to use it.
    "

     

    and attached the following 2 x files:

    AppleALC.kext.zip

    AppleALC_fix.diff.txt.zip

     

  2. Hi again my friends...

    Now I'm working in new hack from Asus G750JX.

    All work, but have same issues and don't can fix it.

    I need some help to fix.

    I upload files.

    Issues:

    - Don't can get shutdown. 

    - Don't go to sleep.

    - AR9285 is working, but don't can create iCloud account. Solved

    - Bluetooth is detected, but not can found devices. Solved 50%

    - I use Asus G75VW bat fix from Rehabman repository to fix battery, but don't ups to 100% and when I unplug AC power, the icon does not change its status. Solved.

     

     

    Thanks in advance...

     

    I Delete old files and upload new files.

     

    Send me MacBook-Pro-de-Antonio.zip

    • Thanks 1
  3. Issue solved...😎
    Writing a custom SSDT to work...
    Now all my ports are detected and all my USB3.0 & 2.0 devices are working... 

    You can not exceed the port limit, for this you must write an SSDT that accompanies USBInjectAll.kext and specify the ports used.

    According to my USB tree, this would be my patch.

    DefinitionBlock ("", "SSDT", 2, "hack", "UIAC", 0x00000000)
    {
        Device (UIAC)
        {
            Name (_HID, "UIA00000")  // _HID: Hardware ID
            Name (RMCF, Package (0x02)
            {
                "8086_8c31", 
                Package (0x04)
                {
                    "port-count", 
                    Buffer (0x04)
                    {
                         0x1A, 0x00, 0x00, 0x00                         
                    }, 
    
                    "ports", 
                    Package (0x0C)
                    {
                        "HS03", 
                        Package (0x04)
                        {
                            "UsbConnector", 
                            0x03, 
                            "port", 
                            Buffer (0x04)
                            {
                                 0x03, 0x00, 0x00, 0x00                         
                            }
                        }, 
    
                        "HS06", 
                        Package (0x04)
                        {
                            "UsbConnector", 
                            0x03, 
                            "port", 
                            Buffer (0x04)
                            {
                                 0x06, 0x00, 0x00, 0x00                         
                            }
                        }, 
    
                        "HS07", 
                        Package (0x04)
                        {
                            "UsbConnector", 
                            0x03, 
                            "port", 
                            Buffer (0x04)
                            {
                                 0x07, 0x00, 0x00, 0x00                         
                            }
                        }, 
    
                        "HS08", 
                        Package (0x04)
                        {
                            "UsbConnector", 
                            0x03, 
                            "port", 
                            Buffer (0x04)
                            {
                                 0x08, 0x00, 0x00, 0x00                         
                            }
                        }, 
    
                        "SS01", 
                        Package (0x04)
                        {
                            "UsbConnector", 
                            0x03, 
                            "port", 
                            Buffer (0x04)
                            {
                                 0x10, 0x00, 0x00, 0x00                         
                            }
                        }, 
    
                        "SS02", 
                        Package (0x04)
                        {
                            "UsbConnector", 
                            0x03, 
                            "port", 
                            Buffer (0x04)
                            {
                                 0x11, 0x00, 0x00, 0x00                         
                            }
                        }
                    }
                }
            })
        }
    }

    And of course thanks to RehabMan for support and USBInjectAll.kext...😜

    • Like 1
×
×
  • Create New...