You've already forked gpd-pocket2-hackintosh
mirror of
https://github.com/jibsaramnim/gpd-pocket2-hackintosh.git
synced 2026-05-15 22:56:31 +09:00
- Lilu v1.3.7 - WhateverGreen v1.3.0 - AppleALC v1.3.9 - VirtualSMC v1.0.6 - SMCProcessor v1.0.6 - SMCBatteryManager v1.0 - SMCSuperIO v1.0.6 - USBInjectAll v0.7.1 - VoodooHDA v2.9.2 - VoodooI2C v2.2 - VoodooPS2Controller v1.8.28 - CPUFriend v1.1.8 - CodecCommander v2.7.1 - NullEthernet v1.0.6 - Display-756e6b6-717 (Custom)
24 lines
695 B
Plaintext
Executable File
24 lines
695 B
Plaintext
Executable File
// This SSDT demonstrates a custom configuration with certain features
|
|
// disabled when using AppleALC.kext.
|
|
// AppleALC.kext has some extra patches for AppleHDA that interfere with these
|
|
// features breaking audio after wake from sleep.
|
|
//
|
|
// Customize to suit your needs.
|
|
//
|
|
// As of CodecCommander v2.7.1, CodecCommander detects AppleALC for setting the default
|
|
// of these two options false.
|
|
|
|
DefinitionBlock ("", "SSDT", 1, "hack", "CC-ALC", 0)
|
|
{
|
|
External(_SB.PCI0.HDEF, DeviceObj)
|
|
Name(_SB.PCI0.HDEF.RMCF, Package()
|
|
{
|
|
"CodecCommander", Package()
|
|
{
|
|
"Perform Reset", ">n",
|
|
"Perform Reset on External Wake", ">n",
|
|
},
|
|
})
|
|
}
|
|
//EOF
|