diff --git a/Universal/ec-methods/manual.md b/Universal/ec-methods/manual.md index d90ca35..d16b90f 100644 --- a/Universal/ec-methods/manual.md +++ b/Universal/ec-methods/manual.md @@ -65,6 +65,39 @@ Now that we have our ACPI path, lets grab our SSDT and get to work: * For Skylake and newer and all AMD systems * [SSDT-EC](https://github.com/acidanthera/OpenCorePkg/blob/master/Docs/AcpiSamples/SSDT-EC.dsl) * For Broadwell and older + + +Now when opening this SSDT, you'll notice a few things. Mainly: + +* Some code is commented out + * This is code for disabling our EC + * Laptops users **SHOULD NOT** uncomment this +* There's a new EC called `Device (EC)` + * **DO NOT RENAME THIS**, this will be the EC we give to macOS + +**Before**: + +``` +External (_SB_.PCI0.LPCB, DeviceObj) <- Rename this + +Scope (_SB.PCI0.LPCB) <- Rename this +``` + +![](/images/Desktops/ssdt-before.png) + +Following the example pathing we found, the SSDT should look something like this: + +**After**: + +``` +External (_SB_.PC00.LPC0, DeviceObj) <- Renamed + +Scope (_SB.PC00.LPC0) <- Renamed +``` + +![](/images/Desktops/ssdt-after.png) + + ## Edge Cases diff --git a/images/Desktops/ssdt-after.png b/images/Desktops/ssdt-after.png new file mode 100644 index 0000000..7e750de Binary files /dev/null and b/images/Desktops/ssdt-after.png differ diff --git a/images/Desktops/ssdt-before.png b/images/Desktops/ssdt-before.png new file mode 100644 index 0000000..35b46bf Binary files /dev/null and b/images/Desktops/ssdt-before.png differ