View Single Post
 
Old 11-20-2009, 04:20 AM
Andy GA Andy GA is offline
Cheetah
 
Join Date: Nov 2009
Posts: 6
Quote:
Originally Posted by simsim View Post
Thanks, booting without dsdt helped. I still get 2 warnings and 2 errors though, so I need to work on it. Besides, everything works fine the way it is so I'm not too motivated :-) Also I have no idea what for example "Method (DTGP, 5, NotSerialized)" actually does so need to look into that too.
2 Errors with DST - Solved

I also had the 2 errors and looked at the lines giving the errors and compared that part of the DSDT to the one in the E2SL Kit. I had to change the Method (_MSG lines from Store (Local0, Local0) to Store ("Local0", Local0) because the quotes were missing in the extraction. The lines should look like below:

Method (_MSG, 1, NotSerialized)
{
Store ("Local0", Local0)
}

Method (_SST, 1, NotSerialized)
{
Store ("Local0", Local0)

After making this change it compiled without errors but with warnings. The dsdt.aml worked fine.
Reply With Quote