Contribute
Register

[Guide] Airport - PCIe Half Mini v2

Status
Not open for further replies.
I recently purchased Azurewave AW-CE123H to use with my Lenovo G580 model 20157. When i install the card and power on it does not boot up. It does not even show the bios. Is the card faulty or the card doesn't support my system.

It is one of those. Your BIOS may also implement a whitelist. You should probably download the service manual for your laptop to see if one of the official replacement parts for the WiFi is compatible with OS X.
 
I can not figure this out for the life of me it seems like its loading but not enabling i have gotten this to work once so i know it works. I have a g74sx and swapped out the wifi card to a dw1520 14e4:4353 and grr so stubborn my wife is getting tired spending time on this thing and i just want to get it to work i will attach ioreg and dsdt

please help me I'm getting tired of working on it and reinstalling over and over again
 

Attachments

  • DSDT and IOreg.zip
    770.7 KB · Views: 112
I can not figure this out for the life of me it seems like its loading but not enabling i have gotten this to work once so i know it works. I have a g74sx and swapped out the wifi card to a dw1520 14e4:4353 and grr so stubborn my wife is getting tired spending time on this thing and i just want to get it to work i will attach ioreg and dsdt

please help me I'm getting tired of working on it and reinstalling over and over again

Looks like your Jmicron card reader drivers are loading against that device. Are you certain you edited the correct Info.plist?
 
I thought I was which one should I be editing
 
Officially supported cards on my system.

Intel 6150NX BSB
BCM4313 MOW
Liteon AR9285 HB95 BGN
BCM4313HMGB BGN+BT
Liteon WB195 BGN+BT

Wish anybody would help me in removing the whitelist.
 
Officially supported cards on my system.

Intel 6150NX BSB
BCM4313 MOW
Liteon AR9285 HB95 BGN
BCM4313HMGB BGN+BT
Liteon WB195 BGN+BT

Wish anybody would help me in removing the whitelist.

The two Liteon cards are compatible with OS X.
 
dude you are the best!!! i restored my computer and just tried the toledo kext with the injection of my device id and it worked. I'm so happy you are amazing
 
Can anyone help out with my broadcom card im testing out.

Vendor : 14e4
Device : 4357
Name : BCM43225

The patch says find the device name and change RP07 in the patch to whatever it is (Looks like RP04 for mine).

Then, if no PXSX, manually add Device (ARPT) after Name (_ADR, 0x001C000x) to dsdt, which I've done under RP04.

Finally, change PXSX to ARPT in the patch file, and then apply.

It does add the details, but then goes to over 100 errors on compilation.

What am I missing here ?

IOJones : View attachment WonkeyDonkey.iojones.zip

DSDT : View attachment DSDT.aml.zip
 
It does add the details, but then goes to over 100 errors on compilation.
Issue is the existing Method (_DSM... in the device; delete.
Correct edit:
Code:
           Device (RP04)
            {
                Name (_ADR, 0x001C0003)  // _ADR: Address
                Device (ARPT)
                {                    
                    Name (_ADR, Zero)
                    Name (_SUN, One)
                    Name (_PRW, Package (0x02) {0x09,0x04})
                    Method (_DSM, 4, NotSerialized)
                    {
                        If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }
                        Return (Package()
                        {
                            "AAPL,slot-name", "AirPort",
                            "built-in", Buffer () {0x00},
                            "device_type", "AirPort",
                            "model", "Broadcom BCM4322x 802.11 a/b/g/n Wireless Network Controller",
                            "name", "AirPort Extreme",
                            "compatible","pci14e4,43a0"
                        })
                    }
                }                
                
                OperationRegion (PXCS, PCI_Config, Zero, 0x0380)
                ......
 
Status
Not open for further replies.
Back
Top