dawiinci Posted November 16, 2010 Share Posted November 16, 2010 What could be the reason if the BIOS resets although I ran DSDT patcher on the Snow partition? (Installed on AMD) Link to comment Share on other sites More sharing options...
user01100 Posted November 16, 2010 Share Posted November 16, 2010 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 More sharing options...
dawiinci Posted November 16, 2010 Author Share Posted November 16, 2010 Thanks for your help. It works now with my DSDT.aml. Strange is that it didn’t work wit the DSDT Patcher but it works with a patched file that I made on this computer earlier - with the same tools and hardware. Link to comment Share on other sites More sharing options...
dawiinci Posted November 17, 2010 Author Share Posted November 17, 2010 Oh great another AMD computer - the same problem. Now it has an error that _NVRAID has to be alphanumeric… Link to comment Share on other sites More sharing options...
Recommended Posts