Contribute
Register

How to correct this SSDT compilation error?

Status
Not open for further replies.
Joined
Oct 16, 2013
Messages
276
Motherboard
Gigabyte GA-Z97X-UD5H
CPU
i7-4770K
Graphics
GTX 770
I'm trying to compile my SSDT for hackbook#1 to disable nvidia.

But i'm getting this errors

Code:
1578, 6126, syntax error, unexpected PARSEOP_RETURN, expecting ',' or ')'
1583, 6126, syntax error, unexpected PARSEOP_RETURN, expecting ',' or ')'
1588, 6126, syntax error, unexpected PARSEOP_RETURN, expecting ',' or ')'
1588, 6126, syntax error, unexpected ')'

Can I remove the MXMX method ? by doing this or is a "crucial" part ?
Code:
into_all method label MXMX remove_entry;


Attached is the SSDT
Thanks.
 

Attachments

  • SSDT4.dsl.zip
    6 KB · Views: 98
I'm trying to compile my SSDT for hackbook#1 to disable nvidia.

But i'm getting this errors

Code:
1578, 6126, syntax error, unexpected PARSEOP_RETURN, expecting ',' or ')'
1583, 6126, syntax error, unexpected PARSEOP_RETURN, expecting ',' or ')'
1588, 6126, syntax error, unexpected PARSEOP_RETURN, expecting ',' or ')'
1588, 6126, syntax error, unexpected ')'

Can I remove the MXMX method ? by doing this or is a "crucial" part ?
Code:
into_all method label MXMX remove_entry;


Attached is the SSDT
Thanks.

Remove MXMX. It is not used by OS X...
 
hi rehab man,

could you please help me compile DSDT and SSDT, i has dump by clover when booting. my computer hp sleek book 14 pc.
 

Attachments

  • HP pavilion sleekbook 14.zip
    43.9 KB · Views: 92
hi rehab man,

could you please help me compile DSDT and SSDT, i has dump by clover when booting. my computer hp sleek book 14 pc.

If you disassemble with 'iasl -da -dl DSDT.aml SSDT*.aml', DSDT.dsl will compile without errors. The only SSDT you need (disabling discrete card?) is SSDT-6.dsl, and it can be compiled without error by removing Windows specific code:
Code:
into_all method label MXMX remove_entry;
into device label WMI1 remove_entry;

iasl: https://bitbucket.org/RehabMan/acpica/downloads
 
Status
Not open for further replies.
Back
Top