Contribute
Register
Status
Not open for further replies.
Depends which you find the easiest. I pretty much do everything myself.

Thanks a lot. I will explore your suggestions. By the way: What is the purpose of the wifi ssdt?
 
Thanks a lot. I will explore your suggestions. By the way: What is the purpose of the wifi ssdt?

If you look at the contents of SSDT-WIFI it (injects) Device Properties for Broadcom BCM4360 Genuine Apple WIFI/Bluetooth Combo Card.

Code:
Scope (\_SB.PCI0)
    {
        Scope (\_SB.PCI0.RP02.PXSX)
        {
            Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method
            {
                If (LEqual (Arg2, Zero))
                {
                    Return (Buffer (One)
                    {
                         0x03                                          
                    })
                }

                Return (Package (0x0C)
                {
                    "AAPL,slot-name",
                    "Built In",
                    "name",
                    "AirPort Extreme",
                    "model",
                    Buffer (0x39)
                    {
                        "Broadcom BCM4360 802.11 a/b/g/n Wireless Network Adapter"
                    },

                    "device_type",
                    Buffer (0x14)
                    {
                        "AirPort"
                    },

                    "built-in",
                    Buffer (0x04)
                    {
                         0x01, 0x00, 0x00, 0x00                        
                    },

                    "location",
                    Buffer (0x04)
                    {
                        "1"
                    }
                })
            }
        }
    }
}
 
If you look at the contents of SSDT-WIFI it (injects) Device Properties for Broadcom BCM4360 Genuine Apple WIFI/Bluetooth Combo Card.

Code:
Scope (\_SB.PCI0)
    {
        Scope (\_SB.PCI0.RP02.PXSX)
        {
            Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method
            {
                If (LEqual (Arg2, Zero))
                {
                    Return (Buffer (One)
                    {
                         0x03                                        
                    })
                }

                Return (Package (0x0C)
                {
                    "AAPL,slot-name",
                    "Built In",
                    "name",
                    "AirPort Extreme",
                    "model",
                    Buffer (0x39)
                    {
                        "Broadcom BCM4360 802.11 a/b/g/n Wireless Network Adapter"
                    },

                    "device_type",
                    Buffer (0x14)
                    {
                        "AirPort"
                    },

                    "built-in",
                    Buffer (0x04)
                    {
                         0x01, 0x00, 0x00, 0x00                      
                    },

                    "location",
                    Buffer (0x04)
                    {
                        "1"
                    }
                })
            }
        }
    }
}
Ok, I bought a combo wifi-BT mini PCIe card with 4 antennas which was advertised as having native support in Mac OS 10.11 and up which I believe is Broadcom94331CD which is reported as Airport Extreme. I think it does not require rebranding through SSDT to work in OS X.
 
Last edited:
Ok, I bought a combo wifi-BT mini PCIe card with 4 antennas which was advertised as having native support in Mac OS 10.11 and up which I believe is Broadcom94331CD which is reported as Airport Extreme. I think it does not require rebranding through SSDT to work in OS X.
Hello Violet,
I upgraded to High sierra my z97-hd3 build and I’m having trouble with my USB 3.0 and the WiFi is showing a message saying that no hardware is installed. Could you advise what I should to make these two things working again?
 
If you look at the contents of SSDT-WIFI it (injects) Device Properties for Broadcom BCM4360 Genuine Apple WIFI/Bluetooth Combo Card.

Code:
Scope (\_SB.PCI0)
    {
        Scope (\_SB.PCI0.RP02.PXSX)
        {
            Method (_DSM, 4, NotSerialized)  // _DSM: Device-Specific Method
            {
                If (LEqual (Arg2, Zero))
                {
                    Return (Buffer (One)
                    {
                         0x03                                         
                    })
                }

                Return (Package (0x0C)
                {
                    "AAPL,slot-name",
                    "Built In",
                    "name",
                    "AirPort Extreme",
                    "model",
                    Buffer (0x39)
                    {
                        "Broadcom BCM4360 802.11 a/b/g/n Wireless Network Adapter"
                    },

                    "device_type",
                    Buffer (0x14)
                    {
                        "AirPort"
                    },

                    "built-in",
                    Buffer (0x04)
                    {
                         0x01, 0x00, 0x00, 0x00                       
                    },

                    "location",
                    Buffer (0x04)
                    {
                        "1"
                    }
                })
            }
        }
    }
}
Hello Violet,
I upgraded to High sierra my z97-hd3 build and I’m having trouble with my USB 3.0 and the WiFi is showing a message saying that no hardware is installed. Could you advise what I should to make these two things working again?
 
Status
Not open for further replies.
Back
Top