Jump to content
23 posts in this topic

Recommended Posts

I've just made a Vanilla Installation of Yosemite 10.10.3 on my laptot with this tutorial. At first, the screen was black, but with this flags

-f -v GraphicsEnabler=Yes IntelCapriFB=3

from here, I have achieved to see and succesfully install, but it's really unusable because I can't get QE/CI acceleration.

 

Also I have tried this, but the same happens.

 

I've a nvidia optimus configuration, IntelHD 4000 + nvidia 710M, but as long as I know, I only can maje work the Intel one

 

What could solve this? I'm using Clover

Link to comment
https://www.insanelymac.com/forum/topic/306480-intel-hd4000-getting-me-crazy/
Share on other sites

I have extracted DSDT and SSDTs, decompiled, changed GFX0 to IGPU, and put OFF() at the end of the _INF parenthesis, but when I try to compile, I get this errors

 

Captura.jpg

 

What can I do?

NP270E5E-X01ES

 

Use the following DSDT patch: 

#Maintained by: RehabMan for: Laptop Patches
#graphics_HD4K_low.txt

#
# Use this patch if your laptop has the standard 1366x768 screen
#
# Use dual-link if you have 1600x900 or have upgraded
# to 1080p screen.
#

#   Inject HDMI info into GFX0/IGPU
into method label _DSM parent_adr 0x00020000 remove_entry;
into device name_adr 0x00020000 insert
begin
Method (_DSM, 4, NotSerialized)\n
{\n
    If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }\n
    Return (Package()\n
    {\n
        "AAPL,ig-platform-id", Buffer() { 0x03, 0x00, 0x66, 0x01 },\n
        "hda-gfx", Buffer() { "onboard-1" },\n
    })\n
}\n
end;

Boot flags: 

-f -v GraphicsEnabler=No

If you need help on the DSDT, post the dsl file here. 

  • Like 1

Yes, I need help, I'm not able to fix the errors

 

Here it is

 

http://www.filedropper.com/dsdt

 

 

Use the following DSDT patch: 

#Maintained by: RehabMan for: Laptop Patches
#graphics_HD4K_low.txt

#
# Use this patch if your laptop has the standard 1366x768 screen
#
# Use dual-link if you have 1600x900 or have upgraded
# to 1080p screen.
#

#   Inject HDMI info into GFX0/IGPU
into method label _DSM parent_adr 0x00020000 remove_entry;
into device name_adr 0x00020000 insert
begin
Method (_DSM, 4, NotSerialized)\n
{\n
    If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }\n
    Return (Package()\n
    {\n
        "AAPL,ig-platform-id", Buffer() { 0x03, 0x00, 0x66, 0x01 },\n
        "hda-gfx", Buffer() { "onboard-1" },\n
    })\n
}\n
end;

Boot flags: 

-f -v GraphicsEnabler=No

If you need help on the DSDT, post the dsl file here. 

You should not disassemble in C-style. It has bugs. Here is one I recently reported: https://github.com/acpica/acpica/issues/75

 

Most patches are written for ASL style anyway.

 

Use my iasl: https://bitbucket.org/RehabMan/acpica/downloads

 

Collect all DSDT and SSDTs, then disassemble ASL style with all DSDT/SSDT as context:

iasl -da -dl DSDT*.aml SSDT*.aml
  • Like 1

You should not disassemble in C-style. It has bugs. Here is one I recently reported: https://github.com/acpica/acpica/issues/75

 

Most patches are written for ASL style anyway.

 

Use my iasl: https://bitbucket.org/RehabMan/acpica/downloads

 

Collect all DSDT and SSDTs, then disassemble ASL style with all DSDT/SSDT as context:

iasl -da -dl DSDT*.aml SSDT*.aml

thanks! now I only have two errors

×
×
  • Create New...