kk1987 / T480s-hackintosh

96 stars 21 forks source link

Fix for sound not coming on after sleep #8

Open mashaal95 opened 5 years ago

mashaal95 commented 5 years ago

If any of you are facing the issue of sound not coming on after sleep, edit the following in your config.plist file to these values. Fix referenced from https://www.tonymacx86.com/threads/lenovo-t480s-a-noobs-approach.281330/

` Code:

Audio
    <dict>
        <key>Inject</key>
        <integer>11</integer>
        <key>ResetHDA</key>
        <true/>
    </dict>

should be: Code:

Audio
    <dict>
        <key>Inject</key>
        <string>No</string>
        <key>ResetHDA</key>
        <true/>
    </dict>

and this: Code:

PciRoot(0)/Pci(0x1f,3)
        <dict>
            <key>#PinConfigurations</key>
            <data>
            </data>
            <key>#hda-gfx</key>
            <string>onboard-1</string>
            <key>#layout-id</key>
            <integer>3</integer>
            <key>#no-controller-patch</key>
            <integer>0</integer>
        </dict>

should be: Code:

PciRoot(0)/Pci(0x1f,3)
        <dict>
            <key>PinConfigurations</key>
            <data>
            </data>
            <key>hda-gfx</key>
            <string>onboard-1</string>
            <key>layout-id</key>
            <integer>11</integer>
            <key>no-controller-patch</key>
            <integer>0</integer>
        </dict>

this should be removed: Code:

ForceKextsToLoad
    <array>
        <string>\System\Library\Extensions\IONetworkingFamily.kext</string>
    </array>

`