Jump to content

need help patching dsdt


mayanktp2
 Share

42 posts in this topic

Recommended Posts

So I am VERY new to the hackintosh world and just finished installing Sierra(tried HS, but failed, got Sierra USB from a friend) on my Dell Inspiron 7567. Now, my laptop has an i5-7300HQ processor. Now the install boots up fine and clover is set up but I need a little help patching DSDT. I read RehabMan's excellent guide but am still confused as I have never worked with Macs before. I need the following things working: Display brightness, Battery Status, Audio. Can someone detail out exactly which steps I need to follow? I tried to compile DSDT but run into the following errors:

 

341, 6074, Name already exists in scope (BNUM)

1411, 6074, Name already exists in scope (IDMN)

1412, 6074, Name already exists in scope (IDPC)

1413, 6074, Name already exists in scope (DLPN)

1426, 6074, Name already exists in scope (IPFI)

 

Can anyone help me out with these errors and with the patching? Uploading DSDT.aml here

DSDT.zip

Link to comment
Share on other sites

  • 5 weeks later...
  • 3 weeks later...
  • 3 months later...
  • 3 weeks later...

Hi,

can you help me, please ?

3 errors on DSDT.dsl :


291, 6074, Name already exists in scope (BNUM)

41760, 6084, Object doas not exist (BODV)

41899, 6084, Object doas not exist (BOC3)

 

3 errors after use this patch :

 

[syn] Rename _DSM methods to XDSM
[bat] Asus G75VW
[sys] Fix _WAK Arg0 v2
[sys] Fix PNOT/PPNT
[sys] IRQ Fix
[sys] OS Check Fix (Windows 8)
[sys] SMBUS Fix
[sys] Skylake LPC
[usb] USB3_PRW 0x6D Skylake (instant wake)

 

For Keyboard Backlight Patch under this "method" :

Quote

Method (SCDG, 1, NotSerialized)
            {
            ....
            }

can you add this, please

Quote

Name (BOFF, Zero)
            Method (SKBL, 1, NotSerialized)
            {
                If (Or (LEqual (Arg0, 0xED), LEqual (Arg0, 0xFD)))
                {
                    If (And (LEqual (Arg0, 0xED), LEqual (BOFF, 0xEA)))
                    {
                        Store (Zero, Local0)
                        Store (Arg0, BOFF)
                    }
                    ElseIf (And (LEqual (Arg0, 0xFD), LEqual (BOFF, 0xFA)))
                    {
                        Store (Zero, Local0)
                        Store (Arg0, BOFF)
                    }
                    Else
                    {
                        Return (BOFF)
                    }
                }
                ElseIf (Or (LEqual (Arg0, 0xEA), LEqual (Arg0, 0xFA)))
                {
                    Store (KBLV, Local0)
                    Store (Arg0, BOFF)
                }
                Else
                {
                    Store (Arg0, Local0)
                    Store (Arg0, KBLV)
                }

                Store (DerefOf (Index (PWKB, Local0)), Local1)
                ^^PCI0.LPCB.EC0.WRAM (0x04B1, Local1)
                Return (Local0)
            }

            Method (GKBL, 1, NotSerialized)
            {
                If (LEqual (Arg0, 0xFF))
                {
                    Return (BOFF)
                }

                Return (KBLV)
            }

 

 

Regards
 

DSDT.zip

Edited by nOsx
Link to comment
Share on other sites

19 minutes ago, nOsx said:

Hi,

can you help me, please ?

3 errors on DSDT.dsl :


291, 6074, Name already exists in scope (BNUM)

41760, 6084, Object doas not exist (BODV)

41899, 6084, Object doas not exist (BOC3)

 

3 errors after use this patch :

 

[syn] Rename _DSM methods to XDSM
[bat] Asus G75VW
[sys] Fix _WAK Arg0 v2
[sys] Fix PNOT/PPNT
[sys] IRQ Fix
[sys] OS Check Fix (Windows 8)
[sys] SMBUS Fix
[sys] Skylake LPC
[usb] USB3_PRW 0x6D Skylake (instant wake)

 

 

Regards
 

DSDT.zip

DSDT.aml.zip

use

change GFX0 to IGPU
47465830 
49475055 

change HDAS to HDEF
48444153 
48444546 

change HECI to IMEI
48454349 
494d4549

  • Like 1
Link to comment
Share on other sites

27 minutes ago, MaLd0n said:

DSDT.aml.zip

use

change GFX0 to IGPU
47465830 
49475055 

change HDAS to HDEF
48444153 
48444546 

change HECI to IMEI
48454349 
494d4549

Thank you for your precious help  !
indeed, my conf.plist file already contains these values !
https://www.tonymacx86.com/threads/guide-asus-rog-gl502vs-skylake-i7-6700hq-gtx-1070-sierra-10-12-4.221056/

you ensure :D

Regards

Edited by nOsx
Link to comment
Share on other sites

3 hours ago, MaLd0n said:

DSDT.aml.zip

use

change GFX0 to IGPU
47465830 
49475055 

change HDAS to HDEF
48444153 
48444546 

change HECI to IMEI
48454349 
494d4549

Big Thanks for my graphics card !!!
 

 

can you tell me the manipulation you made to correct my 3 errors in my DSDT please, as I will have to patch again because I'm waiting for my wifi miniPCI card purchased on the web , and probably changes in the bios ... if it is not asked too much because you have already done a lot for me, thanks again :thumbsup_anim:

ps: i open your shared DSDT file and compile, I had the same first error (BNUM), maybe anecdotal ...

 

Edited by nOsx
Link to comment
Share on other sites

On 07/04/2018 at 4:03 AM, nOsx said:

Big Thanks for my graphics card !!!
 

 

can you tell me the manipulation you made to correct my 3 errors in my DSDT please, as I will have to patch again because I'm waiting for my wifi miniPCI card purchased on the web , and probably changes in the bios ... if it is not asked too much because you have already done a lot for me, thanks again :thumbsup_anim:

ps: i open your shared DSDT file and compile, I had the same first error (BNUM), maybe anecdotal ...

 

u dont need patched again, just if have problem

https://drive.google.com/file/d/1qluqoi_Hf47xsS6oaN3lbztQTgEZ-pZs/view?usp=sharing

Link to comment
Share on other sites

On 10/04/2018 at 8:51 AM, MaLd0n said:

Many Thanks !

I can't find the following method in my DSDT,

only : Method (SCDG, 2, NotSerialized)

can you help me, please?

Keyboard Backlight Patch
under this method

 

Quote

Method (SCDG, 1, NotSerialized)
            {
            ....
            }

add this :

Quote

Name (BOFF, Zero)
            Method (SKBL, 1, NotSerialized)
            {
                If (Or (LEqual (Arg0, 0xED), LEqual (Arg0, 0xFD)))
                {
                    If (And (LEqual (Arg0, 0xED), LEqual (BOFF, 0xEA)))
                    {
                        Store (Zero, Local0)
                        Store (Arg0, BOFF)
                    }
                    ElseIf (And (LEqual (Arg0, 0xFD), LEqual (BOFF, 0xFA)))
                    {
                        Store (Zero, Local0)
                        Store (Arg0, BOFF)
                    }
                    Else
                    {
                        Return (BOFF)
                    }
                }
                ElseIf (Or (LEqual (Arg0, 0xEA), LEqual (Arg0, 0xFA)))
                {
                    Store (KBLV, Local0)
                    Store (Arg0, BOFF)
                }
                Else
                {
                    Store (Arg0, Local0)
                    Store (Arg0, KBLV)
                }

                Store (DerefOf (Index (PWKB, Local0)), Local1)
                ^^PCI0.LPCB.EC0.WRAM (0x04B1, Local1)
                Return (Local0)
            }

            Method (GKBL, 1, NotSerialized)
            {
                If (LEqual (Arg0, 0xFF))
                {
                    Return (BOFF)
                }

                Return (KBLV)
            }

 

 

DSDT.zip

Edited by nOsx
Link to comment
Share on other sites

  • 1 month later...

hello

my ASUS FX502VD laptop has an i7-7700HQ processor - hd6300 - hm175 

Can anyone help me with these errors and with the patching? Uploading DSDT.aml here

originDSDT.aml.zip

PatchDSDT.aml.zip

Screen Shot 2018-05-17 at 12.30.26.png

hello

my ASUS FX502VD laptop has an i7-7700HQ processor - hd6300 - hm175 

Can anyone help me with these errors and with the patching? Uploading DSDT.aml here

AIDA64 WIN10-DSDT.aml.zip

originDSDT.aml.zip

PatchDSDT.aml.zip

Screen Shot 2018-05-17 at 12.30.26.png

Link to comment
Share on other sites

3 hours ago, JoseMaorinho said:

hello

my ASUS FX502VD laptop has an i7-7700HQ processor - hd6300 - hm175 

Can anyone help me with these errors and with the patching? Uploading DSDT.aml here

originDSDT.aml.zip

PatchDSDT.aml.zip

Screen Shot 2018-05-17 at 12.30.26.png

hello

my ASUS FX502VD laptop has an i7-7700HQ processor - hd6300 - hm175 

Can anyone help me with these errors and with the patching? Uploading DSDT.aml here

AIDA64 WIN10-DSDT.aml.zip

originDSDT.aml.zip

PatchDSDT.aml.zip

Screen Shot 2018-05-17 at 12.30.26.png

DSDT.aml.zip

https://bitbucket.org/RehabMan/os-x-maciasl-patchmatic/downloads/RehabMan-MaciASL-2018-0507.zip

Link to comment
Share on other sites

 Share

×
×
  • Create New...