nunca fiz isso , sou bem noob hehehe
Seria isso? É um arquivo que tenho que alterar ?
https://www.tonycrapx86.com/threads/msi-gs70-development-thread.136375/
Device (LID0){
Name (_HID, EisaId ("PNP0C0D")) // _HID: Hardware ID
Method (_LID, 0, NotSerialized) // _LID: Lid Status
{
If (MYEC) // If EC enabled
{
Store (LIDS, Local0)
}
Else
{
Store (One, Local0) // Assume LID is open
}
Return (Local0)
}
Name (_PRW, Package (0x02) // Added for wake resource
{
0x1B,
0x03
})
}
Scope (\_GPE)
{
Method (_L1B, 0, NotSerialized) // Wake notifier for LID0
{
Notify (\_SB.PCI0.LPCB.EC.LID0, 0x02)
}
}