Add complete guide and all config variants

This commit is contained in:
renato97
2026-02-05 14:06:25 +00:00
parent 239ee0e593
commit b40c76762c
1053 changed files with 167761 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/*
* Hyper-V CPU plugin-type SSDT to enable VMPlatformPlugin on Big Sur and newer.
*
* This SSDT must be loaded after SSDT-HV-DEV.dsl
*/
DefinitionBlock ("", "SSDT", 2, "ACDT", "HVPLUG", 0x00000000)
{
External (\_SB.P001, ProcessorObj)
Scope (\_SB.P001)
{
If (_OSI ("Darwin"))
{
Method (_DSM, 4, NotSerialized)
{
If (LEqual (Arg2, Zero))
{
Return (Buffer () { 0x03 })
}
Return (Package ()
{
"plugin-type",
0x02
})
}
}
}
}