olarila.com

Mac OS X x86 - Hackintosh
It is currently 19 Jun 2013, 03:12

All times are UTC [ DST ]




Post new topic Reply to topic  [ 30 posts ]  Go to page Previous  1, 2, 3
Author Message
PostPosted: 04 Aug 2012, 21:46 
User avatar
iGenius

Joined: 26 Aug 2011, 23:53
Posts: 3761
In the file you attached it's inside PEX4.

The patch should be like this to work in your DSDT (or adjust the address)
Code:
into device name_adr 0x001C0004 insert
begin
Device (ARPT)\n
{\n
    Name (_ADR, 0x00)\n
    Method (_DSM, 4, NotSerialized)\n
    {\n
        Store (Package (0x0C)\n
            {\n
                "AAPL,slot-name", \n
                Buffer (0x08)\n
                {\n
                    "AirPort"\n
                }, \n
                "device-id", \n
                Unicode ("*"), \n
                "device_type", \n
                Buffer (0x08)\n
                {\n
                    "AirPort"\n
                }, \n
                "model", \n
                Buffer (0x34)\n
                {\n
                    "Atheros 9285 8802.11 b/g/n Wireless Network Adapter"\n
                }, \n
                "subsystem-id", \n
                Buffer (0x04)\n
                {\n
                    0x8F, 0x00, 0x00, 0x00\n
                }, \n
                "subsystem-vendor-id", \n
                Buffer (0x04)\n
                {\n
                    0x6B, 0x10, 0x00, 0x00\n
                }\n
            }, Local0)\n
        DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))\n
        Return (Local0)\n
    }\n
}
end

_________________
ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8


Top
 Profile  
 
PostPosted: 05 Aug 2012, 07:20 
User avatar
Geek

Joined: 23 Apr 2012, 12:53
Posts: 100
Location: UK
Cassio wrote:
In the file you attached it's inside PEX4.

The patch should be like this to work in your DSDT (or adjust the address)


Yes you are right but, there is no more PEX4 after updating the BIOS to Version 2.20.
Latest RAW DSDT has wifi on RP05.

RAW DSDT attached.


You do not have the required permissions to view the files attached to this post.

_________________
ASRock H67M ITX HT, i5 2500K 8GB Ram

GB Score - 9815


Top
 Profile  
 
PostPosted: 05 Aug 2012, 23:06 
User avatar
iGenius

Joined: 26 Aug 2011, 23:53
Posts: 3761
Ok, address is the same (0x001C0004) so the patch in previous post should work. I think I won't add it in the full patch since it's not the default wifi.

_________________
ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8


Top
 Profile  
 
PostPosted: 06 Aug 2012, 09:55 
User avatar
Geek

Joined: 23 Apr 2012, 12:53
Posts: 100
Location: UK
Thanks, I will try that patch and let you know how it goes.

I was talking about changing the patch you guys have in database.

Image

This doesn't work.

_________________
ASRock H67M ITX HT, i5 2500K 8GB Ram

GB Score - 9815


Top
 Profile  
 
PostPosted: 06 Aug 2012, 15:43 
User avatar
iGenius

Joined: 26 Aug 2011, 23:53
Posts: 3761
It works if you change the address, it's not the same for all boards, so we can't have a generic patch that will work for all.

_________________
ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8


Top
 Profile  
 
PostPosted: 06 Aug 2012, 17:55 
User avatar
Geek

Joined: 23 Apr 2012, 12:53
Posts: 100
Location: UK
Just tested the wifi codes, works like charm thank you.
One last thing, how to add change ABCDEFGH to decimals on the mobo patch?


Name (_HID, "ABCDEFGH")

Name (_HID, "11259375")

_________________
ASRock H67M ITX HT, i5 2500K 8GB Ram

GB Score - 9815


Top
 Profile  
 
PostPosted: 06 Aug 2012, 18:07 
User avatar
iGenius

Joined: 26 Aug 2011, 23:53
Posts: 3761
Code:
into_all all code_regex Name\s\(_HID,\s"ABCDEFGH"\) replace_matched
begin
Name (_HID, "11259375")
end


Why change it to decimal? The error is about non-hex digits, so "ABCDEFFF" or same value from _CID also avoids the error.

_________________
ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8


Top
 Profile  
 
PostPosted: 06 Aug 2012, 18:53 
User avatar
Geek

Joined: 23 Apr 2012, 12:53
Posts: 100
Location: UK
Coz thats how i got rid of that error. I was planning to include that in the patch..
"_CID also avoids the error." How to do this?

_________________
ASRock H67M ITX HT, i5 2500K 8GB Ram

GB Score - 9815


Top
 Profile  
 
PostPosted: 06 Aug 2012, 20:06 
User avatar
iGenius

Joined: 26 Aug 2011, 23:53
Posts: 3761
I mean using the same value as _CID ("PNP0C15").

Actually I don't think it will make any difference.

_________________
ASUS N53Jq • CPU: Intel Core i7-740QM 1.73GHz • RAM: 6,0GB • HD: 500GB • GPU: GeForce GT 425M 1GB 1920x1080 • OS: OS X 10.8.4 • Linux Mint 15 • Windows 8


Top
 Profile  
 
PostPosted: 10 Aug 2012, 11:52 
User avatar
Geek

Joined: 23 Apr 2012, 12:53
Posts: 100
Location: UK
ASRock H67M ITX-HT - i5 2500K - ML (Fully functional)


Image


Image


Image


Geekbench Score




ASRock H67M-ITX HT
Intel i5-2500K
Corsair 8GB DDR3
Atheros AR9285 (Works OFB with DSDT edits)

_________________
ASRock H67M ITX HT, i5 2500K 8GB Ram

GB Score - 9815


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 30 posts ]  Go to page Previous  1, 2, 3

All times are UTC [ DST ]


Who is online

Users browsing this forum: cexe and 4 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group