View Single Post
 
Old 08-22-2009, 02:27 PM
atka atka is offline
Cheetah
 
Join Date: Jan 2009
Posts: 6
There is also a DSDT fix find your sata device in your DSDT and then add this to the end of it if you have a ich7/8/9.

Code:
 Method (_DSM, 4, NotSerialized)
                {
                    Store (Package (0x02)
                        {
                            "device-id", 
                            Buffer (0x04)
                            {
                                0x81, 0x26, 0x00, 0x00
                            }
                        }, Local0)
                    DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                    Return (Local0)
                }
Yes it does change your device from a ichx to a ESB2 but it fixes it without replaceing any kexts and is portable between leopard and snow leopard.
Reply With Quote