Contribute
Register

Sound not working after reboot on Catalina 10.15 [Dell G3]

Status
Not open for further replies.
Joined
Aug 2, 2018
Messages
21
Motherboard
Dell
CPU
i7-8750H
Graphics
GTX 1050 Ti
Hello
I have a problem about sound (ALC236) , i already follow step for install appleALC.kext and Luli.kext
- past to EFI/CLOVER/kexts and install to L/E by hackintool
- set layout-id under "inject" in config.plist by cover configurator
- reboot
After reboot for first time , sound is working (as attach image) but after reboot or shutdown it not work again.
how to fix this problem.
 

Attachments

  • config.plist
    9.3 KB · Views: 103
  • Screen Shot 2562-10-24 at 14.34.28.png
    Screen Shot 2562-10-24 at 14.34.28.png
    342.1 KB · Views: 122
Last edited:
Hello
I have a problem about sound (ALC236) , i already follow step for install appleALC.kext and Luli.kext
- past to EFI/CLOVER/kexts and install to L/E by hackintool
- set layout-id under "inject" in config.plist by cover configurator
- reboot
After reboot for first time , sound is working (as attach image) but after reboot or shutdown it not work again.
how to fix this problem.
these can be removed from your boot arguments:
Code:
debug=0x100 -lilubetaall

this section:
Code:
<key>Devices</key>
    <dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <integer>16</integer>
            <key>ResetHDA</key>
            <true/>
        </dict>

should be:
Code:
<key>Devices</key>
    <dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <string>No</string>
            <key>ResetHDA</key>
            <true/>
        </dict>

and you should be adding this:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>layout-id</key>
                <integer>16</integer>
                <key>PinConfigurations</key>
                <data></data>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>no-controller-patch</key>
                <integer>1</integer>
            </dict>

if you take a look here:

you can see where it belongs
 
these can be removed from your boot arguments:
Code:
debug=0x100 -lilubetaall

this section:
Code:
<key>Devices</key>
    <dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <integer>16</integer>
            <key>ResetHDA</key>
            <true/>
        </dict>

should be:
Code:
<key>Devices</key>
    <dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <string>No</string>
            <key>ResetHDA</key>
            <true/>
        </dict>

and you should be adding this:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>layout-id</key>
                <integer>16</integer>
                <key>PinConfigurations</key>
                <data></data>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>no-controller-patch</key>
                <integer>1</integer>
            </dict>

if you take a look here:

you can see where it belongs

Thank you for advise, I already try but it still not work
** I try to remove all kext=> reboot => reinstall again it's work for first time , it's same issue
How to fix it?
 
Thank you for advise, I already try but it still not work
** I try to remove all kext=> reboot => reinstall again it's work for first time , it's same issue
How to fix it?
no problem reporting files....
 
these can be removed from your boot arguments:
Code:
debug=0x100 -lilubetaall

this section:
Code:
<key>Devices</key>
    <dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <integer>16</integer>
            <key>ResetHDA</key>
            <true/>
        </dict>

should be:
Code:
<key>Devices</key>
    <dict>
        <key>Audio</key>
        <dict>
            <key>AFGLowPowerState</key>
            <false/>
            <key>Inject</key>
            <string>No</string>
            <key>ResetHDA</key>
            <true/>
        </dict>

and you should be adding this:
Code:
<key>PciRoot(0)/Pci(0x1f,3)</key>
            <dict>
                <key>layout-id</key>
                <integer>16</integer>
                <key>PinConfigurations</key>
                <data></data>
                <key>hda-gfx</key>
                <string>onboard-1</string>
                <key>no-controller-patch</key>
                <integer>1</integer>
            </dict>

if you take a look here:

you can see where it belongs

Thanks!! I have a Dell Vostro 5481 with i7 8565U and UHD Graphics 620 running Catalina. Only the headphone wasn't working, but after applying this changes is working perfectly.
 
Status
Not open for further replies.
Back
Top