KextsToPatch - JrCs/Clover-Wiki GitHub Wiki
###KextsToPatch
######At this section you can add "custom" kext patches to be applied "on-the-fly" by Clover, this means that at the next update or reinstallation, you don't need to manually apply the patches to the kext.
######This settings can be found at your [config.plist] under [KernelAndKextPatches] section.
######Here are some examples;
X must be replaced for the "ordering number" starting from 0, so, if you have more than one kext patch, first will be 0, second 1, third 2 and so on.
AppleAHCIPort patch to fix internal disks displayed as external (Orange Icon) by Slice
<key>X</key> <dict> <key>Name</key> <string>AppleAHCIPort</string> <key>Find</key> <data>RXh0ZXJuYWw=</data> <key>Replace</key> <data>SW50ZXJuYWw=</data> </dict>
IOAHCIBlockStorage patch to prevent freeze on some HDD when booting using kernelcache by bcc9
<key>X</key> <dict> <key>Name</key> <string>IOAHCIBlockStorage</string> <key>Find</key> <data>pZAAAA==</data> <key>Replace</key> <data>kJCQkA==</data> </dict> IOAHCIBlockStorage patch to enable TRIM support for any SSD by scrax<key>X</key> <dict> <key>Name</key> <string>IOAHCIBlockStorage</string> <key>Find</key> <data>QVBQTEUgU1NE</data> <key>Replace</key> <data>AAAAAAAAAAAA</data> </dict>