Hello! Thanks for replying to me. I am pretty new to the DSDT patching, so it was not that easy to find a concise guide on that. Do you think this one covers what I need to do? -> https://hackintoshpro.com/patch-dsdt-hackintosh/
So to rephrase, now that I have the kexts I mentioned in my first post installed, I need to patch DSDT with the code below using MaciASL, right?
Will be happy if you could point me if my direction is right.
Thanks!
Device (<YourDevice>) // Identified wireless device through IORegistryExplorer (usually: ARPT)
{
...
...
...
Method (_DSM, 4, NotSerialized) // Device Specific Method for the wireless card
{
Store (Package ()
{
"model",
Buffer (0x23)
{
"AzureWare AW-NB290H b/g/n Wireless"
},
"device_type",
Buffer (0x08)
{
"AirPort"
},
"built-in",
Buffer (One)
{
0x00
},
"name",
Buffer (0x10)
{
"AirPort Extreme"
},
"AAPL,slot-name",
Buffer (0x09)
{
"Internal"
},
"compatible", // Declares compatibility with a device
Buffer (0x0B)
{
"pci14e4,43a0" // PCI id of device supported OOB
}
}, Local0)
DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
Return (Local0)
}
}