Jump to content

Need help


marto

Recommended Posts

  • Administrators

If you use Clover, why do you seek the file? You're expected to use the hot/on-the-fly patching facility of Clover. Use CloverConfigurator tool (Google for it).

 

However, if you're attempting direct patching of the kext file, then:

  • AirportBrcm4360 is a PlugIn of IO80211Family
  • use a hex editor on the binary file of the kext (the file found inside the kext package, under Contents/MacOS folder) to replace the strings
Link to comment
Share on other sites

  • Moderators

run this in the terminal

 

sudo perl -pi -e 's|\x89\x45\xC8\x39\xC7\x76\x4F|\x89\x45\xC8\x39\xC7\xEB\x4F|g' /System/Library/Extensions/AppleIntelBDWGraphicsFramebuffer.kext/Contents/MacOS/AppleIntelBDWGraphicsFramebuffer

sudo touch /System/Library/Extensions

sudo kextcache —Boot -U /
 
reboot
Link to comment
Share on other sites

  • Moderators

Could be you can't run the patch directly to the file in /S/L/E.

Copy and make a backup of AppleIntelBDWGraphicsFramebuffer.kext to the Desktop

sudo cp -R /System/Library/Extensions/AppleIntelBDWGraphicsFramebuffer.kext ~/Desktop
mkdir  ~/Desktop/backup
sudo cp -R /System/Library/Extensions/AppleIntelBDWGraphicsFramebuffer.kext ~/Desktop/backup
sudo perl -pi -e 's|\x89\x45\xC8\x39\xC7\x76\x4F|\x89\x45\xC8\x39\xC7\xEB\x4F|g' ~/Desktop/AppleIntelBDWGraphicsFramebuffer.kext/Contents/MacOS/AppleIntelBDWGraphicsFramebuffer
sudo cp -R ~/Desktop/AppleIntelBDWGraphicsFramebuffer.kext /System/Library/Extensions
sudo touch -f /System/Library/Extensions && sudo kextcache —Boot -U /
Link to comment
Share on other sites

×
×
  • Create New...