Jump to content
Finnish

P8H67-M EVO - after shutdown system boots again

Recommended Posts

Hi,


I successfully patched DSDT from my Hackintos using DSDT patcher, 0 errors and 230 optimizations in the final dsdt.aml


System is snappy and all is good, except system won't shut down properly, it goes to shutdown but after 3-4 seconds it boots again. What is wrong?


I had to run Chimera 1.5.3 after injecting DSDT with multishit 'cause otherwise I lose good graphics with my builtin HD3000 graphics card. My cpu is 2600k.

DSDT.aml.zip

Link to comment
Share on other sites

  • Administrators

send me kextstat

run on terminal

Donation with PayPal HERE

Donation with Stripe HERE

Donation with BuyMeaCoffee HERE

Donation with Mercado Livre HERE

Donation with Skrill danielnmaldonado@gmail.com

Donation with Binance 0xdbe48ef6b158f1dd0035d7f49555c99e52f72714

Donation with BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3

Donation with PicPay @danielnmaldonado

Donation with PiX @danielnmaldonado@gmail.com

About Premium Users you can check HERE

Problems with Paypal HERE

oaGK2x0.png

 

Link to comment
Share on other sites

  • Administrators
Here you go!

remove EvOreboot

shutdown in DSDT

Donation with PayPal HERE

Donation with Stripe HERE

Donation with BuyMeaCoffee HERE

Donation with Mercado Livre HERE

Donation with Skrill danielnmaldonado@gmail.com

Donation with Binance 0xdbe48ef6b158f1dd0035d7f49555c99e52f72714

Donation with BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3

Donation with PicPay @danielnmaldonado

Donation with PiX @danielnmaldonado@gmail.com

About Premium Users you can check HERE

Problems with Paypal HERE

oaGK2x0.png

 

Link to comment
Share on other sites

  • Administrators

send me new kextstat

Donation with PayPal HERE

Donation with Stripe HERE

Donation with BuyMeaCoffee HERE

Donation with Mercado Livre HERE

Donation with Skrill danielnmaldonado@gmail.com

Donation with Binance 0xdbe48ef6b158f1dd0035d7f49555c99e52f72714

Donation with BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3

Donation with PicPay @danielnmaldonado

Donation with PiX @danielnmaldonado@gmail.com

About Premium Users you can check HERE

Problems with Paypal HERE

oaGK2x0.png

 

Link to comment
Share on other sites

You have shutdown patch in DSDT

Method (_PTS, 1, NotSerialized)
{
[color=#FF0000]    If (LEqual (Arg0, 0x05)) {}
   Else
   {[/color]
       Store (Arg0, DBG8)
       If (LAnd (LEqual (Arg0, 0x04), LEqual (OSFL (), 0x02)))
       {
           Sleep (0x0BB8)
       }
       PTS (Arg0)
       Store (Zero, Index (WAKP, Zero))
       Store (Zero, Index (WAKP, One))
       Store (ASSB, WSSB)
       Store (AOTB, WOTB)
       Store (AAXB, WAXB)
       Store (Arg0, ASSB)
       Store (OSFL (), AOTB)
       Store (Zero, AAXB)
       Store (One, \_SB.SLPS)
[color=#FF0000]    }[/color]
}

 

Remove EvOreboot.

ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8

Link to comment
Share on other sites

You have shutdown patch in DSDT

Method (_PTS, 1, NotSerialized)
{
[color=#FF0000]    If (LEqual (Arg0, 0x05)) {}
   Else
   {[/color]
       Store (Arg0, DBG8)
       If (LAnd (LEqual (Arg0, 0x04), LEqual (OSFL (), 0x02)))
       {
           Sleep (0x0BB8)
       }
       PTS (Arg0)
       Store (Zero, Index (WAKP, Zero))
       Store (Zero, Index (WAKP, One))
       Store (ASSB, WSSB)
       Store (AOTB, WOTB)
       Store (AAXB, WAXB)
       Store (Arg0, ASSB)
       Store (OSFL (), AOTB)
       Store (Zero, AAXB)
       Store (One, \_SB.SLPS)
[color=#FF0000]    }[/color]
}

 

Remove EvOreboot.

 

I've removed EvOreboot from Extra-folder but that didn't help, it still reboots after shutting down. Is it about removing something else also?

Link to comment
Share on other sites

How do I do that? I removed EvOreboot from Extra-folder but that didn't work. I don't know how to remove that EvOreboot from DSDT, can you help with that? Or could you remove it and send the DSDT to me?

EvOreboot is in the kextstat you posted after saying that, are you sure you removed it?

ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8

Link to comment
Share on other sites

You can try this patch in _PTS (like in Gigabyte mobos)

        If (LEqual (Arg0, 0x05))
       {
           Store (Zero, SLPE)
           Sleep(0x10)
       }
       Else
       {
           ... original code
       }

and this in scope (/)

OperationRegion (PMRS, SystemIO, [color=#FF0000]PMBASE+30h[/color], One)
Field (PMRS, ByteAcc, NoLock, Preserve)
{
       ,   4, 
   SLPE,   1
}

Check PMBASE in SSDT.

E.g.

Processor (P001, 0x01, [color=#FF0000]0x00000810[/color], 0x06) {}

PMBASE+10h=0x00000810

PMBASE=0x800

so you would use

OperationRegion (PMRS, SystemIO, [color=#FF0000]0x0830[/color], One)

http://osx86.co/f36/various-dsdt-mods-t1960/post41570.html

ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8

Link to comment
Share on other sites

Hi and thanks for your input, but this goes a bit too far when it comes to my knowledge to hassle with the code...


 

You can try this patch in _PTS (like in Gigabyte mobos)

        If (LEqual (Arg0, 0x05))
       {
           Store (Zero, SLPE)
           Sleep(0x10)
       }
       Else
       {
           ... original code
       }

and this in scope (/)

OperationRegion (PMRS, SystemIO, [color=#FF0000]PMBASE+30h[/color], One)
Field (PMRS, ByteAcc, NoLock, Preserve)
{
       ,   4, 
   SLPE,   1
}

Check PMBASE in SSDT.

E.g.

Processor (P001, 0x01, [color=#FF0000]0x00000810[/color], 0x06) {}

PMBASE+10h=0x00000810

PMBASE=0x800

so you would use

OperationRegion (PMRS, SystemIO, [color=#FF0000]0x0830[/color], One)

http://osx86.co/f36/various-dsdt-mods-t1960/post41570.html

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.





×
  • Create New...

Hey! Welcome to Olarila.com  Please Disable Your ADBlocker!

3vHSCmh.png

Support Olarila Vanilla Hackintosh by making a donation HERE

The popup will be closed in 15 seconds...