Cengiz sevinir Posted September 24, 2016 Share Posted September 24, 2016 Thx, Broadcom BCM94352HMB work OK )) Bro can you share bcm4352hbm kext and patch ? Link to comment Share on other sites More sharing options...
shnyaps Posted September 26, 2016 Share Posted September 26, 2016 On macOS Sierra DP1, when using a BMC94532Z NGFF WiFi card, AirportBrcm4360.kext no longer successfully loads. This problem is caused by the driver not being able to initialize the fvco (frequency voltage controlled oscillator). Apply the following patch in Clover to enable WiFi using the BCM94352Z: Kext: AirPortBrcm4360 Find: 81F952AA00007529 Replace: 81F952AA00006690 Through Clover config.plist: <dict> <key>Comment</key> <string>AirPortBrcm4360 - fcvo</string> <key>Disabled</key> <false/> <key>Find</key> <data>gflSqgAAdSk=</data> <key>Name</key> <string>AirPortBrcm4360</string> <key>Replace</key> <data>gflSqgAAZpA=</data> </dict> After this patch my wifi has started working in sierra installation But after installation result is the same (no wifi) Any ideas? Link to comment Share on other sites More sharing options...
Denicio Posted September 26, 2016 Share Posted September 26, 2016 After this patch my wifi has started working in sierra installation But after installation result is the same (no wifi) Any ideas? Terminal -> sudo touch /System/Library/Extensions && sudo kextcache -u / 1 Link to comment Share on other sites More sharing options...
shnyaps Posted September 26, 2016 Share Posted September 26, 2016 Terminal -> sudo touch /System/Library/Extensions && sudo kextcache -u / THANKS!!! That's it! Link to comment Share on other sites More sharing options...
shnyaps Posted September 26, 2016 Share Posted September 26, 2016 anyone have 5g connection lost after wakeup? fresh boot, i can use 5g wifi. and go sleep, wakeup, 5g wifi is gone, can only use normal wifi. 스크린샷 2016-09-21 오후 3.26.08.png I have the same issue. after wake up only 2.4Ghz wifi are visible Link to comment Share on other sites More sharing options...
Wanderer3 Posted October 2, 2016 Share Posted October 2, 2016 @Darkvoid, pure genius, my wifi on BCM94352HMB, which was disabled after 10.12 Sierra update is now working with no problems after applying your fix in clover, many thanks. Link to comment Share on other sites More sharing options...
nyu1985 Posted October 2, 2016 Share Posted October 2, 2016 Thanks for such a great patch which also works with Enoch v.2830 by Hex Editor Which tags and values did you add ? Link to comment Share on other sites More sharing options...
nyu1985 Posted October 2, 2016 Share Posted October 2, 2016 OK I directly patch the kext manually and it works ! Thanks. Link to comment Share on other sites More sharing options...
sonicthehedgehog2 Posted October 4, 2016 Share Posted October 4, 2016 my config.plist Wow you must have the most compatible pc. My config.plist is way more complicated. Link to comment Share on other sites More sharing options...
gpatpandp Posted October 4, 2016 Share Posted October 4, 2016 Wow you must have the most compatible pc. My config.plist is way more complicated. Aside from the SMBIOS section, It was automatically populated through following a El Capitan guide for the HP Envy 15T K-series created by "Rehabman". Link to comment Share on other sites More sharing options...
chrinist Posted October 10, 2016 Share Posted October 10, 2016 Hey guys, do you know if this patch will work for the DW1560 BCM20702A0 Wifi Card? I have that card in my laptop. Thanks, Link to comment Share on other sites More sharing options...
bronxteck Posted October 10, 2016 Share Posted October 10, 2016 most likely it will. Link to comment Share on other sites More sharing options...
sagwa Posted October 13, 2016 Share Posted October 13, 2016 In my case, after edit with this script I have to reinstall sierra. Just edit config.plist, not working. Anyway, thanks. Link to comment Share on other sites More sharing options...
Duffman1914 Posted October 26, 2016 Share Posted October 26, 2016 So I followed these steps and my wifi was working with 10.12. After updating to 10.12.1 it no longer works. If I click on the wifi symbol in the menu bar it says "Wi-Fi: No hardware installed." Is there something else that has to be done for 10.12.1 now? Link to comment Share on other sites More sharing options...
Denicio Posted October 26, 2016 Share Posted October 26, 2016 So I followed these steps and my wifi was working with 10.12. After updating to 10.12.1 it no longer works. If I click on the wifi symbol in the menu bar it says "Wi-Fi: No hardware installed." Is there something else that has to be done for 10.12.1 now? I made it work by using darkvoid's patch, and also replacing an existing device ID with my own on AirPortBrcm4360.kext: <dict> <key>Comment</key> <string>BCM94352HMB add 0x43b114e4</string> <key>Disabled</key> <false/> <key>Find</key> <data> PHN0cmluZz5wY2kxNGU0LDQzYmE8L3N0cmluZz4= </data> <key>InfoPlistPatch</key> <true/> <key>Name</key> <string>AirPortBrcm4360</string> <key>Replace</key> <data> PHN0cmluZz5wY2kxNGU0LDQzYjE8L3N0cmluZz4= </data> </dict> Don't use any additional kexts, and don't apply anything related on Clover's DSDT fixes. After you're done with the changes on your config.plist run the following on Terminal: sudo touch /System/Library/Extensions && sudo kextcache -u / Now Restart. Link to comment Share on other sites More sharing options...
xerano Posted October 26, 2016 Share Posted October 26, 2016 okay everything works again i enabled "AddDTGP" and "FixAirport" in ACPI Section and added the DeviceID in in the Device Section. with darkvoids patch my WIFI is working on 10.12.1 Link to comment Share on other sites More sharing options...
Duffman1914 Posted October 26, 2016 Share Posted October 26, 2016 I made it work by using darkvoid's patch, and also replacing an existing device ID with my own on AirPortBrcm4360.kext: <dict> <key>Comment</key> <string>BCM94352HMB add 0x43b114e4</string> <key>Disabled</key> <false/> <key>Find</key> <data> PHN0cmluZz5wY2kxNGU0LDQzYmE8L3N0cmluZz4= </data> <key>InfoPlistPatch</key> <true/> <key>Name</key> <string>AirPortBrcm4360</string> <key>Replace</key> <data> PHN0cmluZz5wY2kxNGU0LDQzYjE8L3N0cmluZz4= </data> </dict> Don't use any additional kexts, and don't apply anything related on Clover's DSDT fixes.After you're done with the changes on your config.plist run the following on Terminal: sudo touch /System/Library/Extensions && sudo kextcache -u / Now Restart. Would the device ID be the same for all similar chips? I have an Azurewave BCM94352HMB. Also, is there a certain spot in AirPortBRCM4360.kext that I need to put this? I added it already and it is still not working. 1 Link to comment Share on other sites More sharing options...
Denicio Posted October 27, 2016 Share Posted October 27, 2016 Would the device ID be the same for all similar chips? I have an Azurewave BCM94352HMB. Also, is there a certain spot in AirPortBRCM4360.kext that I need to put this? I added it already and it is still not working. If you open this patch on Clover Configurator, you will see the actual String representation and not the Base64 encoding. Then it's easy to change the value to reflect your Device ID. Alternatively you can decode the Base64 String online (on a utility site), change it's value to your Device ID, and then encode it again to Base64. Link to comment Share on other sites More sharing options...
UltraLaser Posted October 27, 2016 Share Posted October 27, 2016 If you open this patch on Clover Configurator, you will see the actual String representation and not the Base64 encoding. Then it's easy to change the value to reflect your Device ID. Alternatively you can decode the Base64 String online (on a utility site), change it's value to your Device ID, and then encode it again to Base64. I already have it : <key>KextsToPatch</key> <array> <dict> <key>Disabled</key> <false/> <key>Find</key> <data> gflSqgAAdSk= </data> <key>Name</key> <string>AirPortBrcm4360</string> <key>Replace</key> <data> gflSqgAAZpA= </data> </dict> </array> With 10.12 with same settings but without IO80211Family.kext Link to comment Share on other sites More sharing options...
Raffaell Posted October 27, 2016 Share Posted October 27, 2016 Hi All, I'm really newbie on using clover, please enlighten me for this. Just had upgrade from Yosemite to Sierra with clean install, all works now left Wifi and BT. I have bcm94360cd with BCM20702A0 bluetooth as half mini pcie. Mb. Gigabyte H97N-Wifi (changed the wifi card) From DPCI Manager it shows14E4, 43B1, 11AD, 6646, Broadcom Corporation, BCM4352 802.11ac Wireless Network Adapter Tried to put darkvoid patch into my config.plist include sudo touch /System/Library/Extensions && sudo kextcache -u / But seems not working. Is there anything I missed ? Link to comment Share on other sites More sharing options...
sameh0 Posted October 28, 2016 Share Posted October 28, 2016 Guys I have BCM943225HMB after upgrading to 10.12.1 the whilst patch didn't work I even tried the patch mentioned by Denicio didn't work either . What is the correct patch for me ? Link to comment Share on other sites More sharing options...
beBoss Posted October 28, 2016 Share Posted October 28, 2016 Should be something like this?For me is not working... Well maybe I am doing something wrong but exactly shroud I do? My card is Broadcom BCM4352 Link to comment Share on other sites More sharing options...
Denicio Posted October 28, 2016 Share Posted October 28, 2016 Should be something like this? For me is not working... Well maybe I am doing something wrong but exactly shroud I do? My card is Broadcom BCM4352 wifi-ket-patches.png Which Device ID are you trying to add? Link to comment Share on other sites More sharing options...
beBoss Posted October 28, 2016 Share Posted October 28, 2016 To be honest, I have no idea. Can you tell me where and how to check my id, and what I have to do, please? Link to comment Share on other sites More sharing options...
Denicio Posted October 28, 2016 Share Posted October 28, 2016 To be honest, I have no idea. Can you tell me where and how to check my id, and what I have to do, please? Download DPCIManager, and find your Broadcom Device ID through that (or take a screenshot of it). Link to comment Share on other sites More sharing options...
Recommended Posts