Jump to content

BIOS reset even with DSDT.aml


dawiinci
 Share

4 posts in this topic

Recommended Posts

Try kext way and see if it works. Goes in E/E

 

http://www.kexts.com/view/151-cmos_reset_fix_via_kext.html

 

This is the fix (dsdt file):

 

RTC fix.

 

Consists in eliminating all the IRQs from RTC.

Has been reported that erasing IRQ from RTC breaks sleep under snow leopard 10.6.0 and 10.6.1, on 10.6.2 doesn´t breaks sleep.

 

 

 

original code:

 

Device (RTC)

{

Name (_HID, EisaId ("PNP0B00"))

Name (_CRS, ResourceTemplate ()

{

IO (Decode16,

0x0070, // Range Minimum

0x0070, // Range Maximum

0x01, // Alignment

0x08, // Length

)

IRQNoFlags ()

{8}

})

}

 

 

Clean Code:

 

 

 

 

Device (RTC)

{

Name (_HID, EisaId ("PNP0B00"))

Name (_CRS, ResourceTemplate ()

{

IO (Decode16,

0x0070, // Range Minimum

0x0070, // Range Maximum

0x01, // Alignment

0x08, // Length

)

})

}

 

There must be no IRQ code left in RTC

Link to comment
Share on other sites

 Share

×
×
  • Create New...