Files
Getting-Started-With-ACPI/extra-files/decompiled/SSDT-UNC.dsl
Mykola Grymalyuk 614c097101 Rewrite prebuilt SSDT page
Should help new users navigate the site better

Also added X99 and X299 info
2020-10-16 15:07:15 -06:00

20 lines
406 B
Plaintext

/*
* Ensures unsed uncore bridges are disabled, otherwise X79 and X99
* will kernel panic in Big Sur with IOPCIFamily.
* SSDT Taken from OpenCorePkg repo
*/
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "UNC", 0x00000000)
{
External (_SB.UNC0, DeviceObj)
External (PRBM, IntObj)
Scope (_SB.UNC0)
{
Method (_INI, 0, NotSerialized)
{
PRBM = 0
}
}
}