Contribute
Register

Yosemite & TRIM (Clover)

Status
Not open for further replies.
Joined
Aug 18, 2013
Messages
187
Motherboard
Aorus Z370 Gaming 5
CPU
i7-8700K
Graphics
GTX 1080 Ti
Mac
  1. iMac
Hey all,

I looked around and and found a few articles, but I wanted to check here and see if there was a better solution.

I am currently using TRIM Enabler on Yosemite, and it works, but I am wondering if there is a more "vanilla" option that is proven to work? Would installing the kext from Chimera work?

The other thing I tried was adding it to the kext thing in Clove Configurator, but that seemed to have no affect.
 
Clover

<dict>
<key>Comment</key>
<string>Trim Enabler</string>
<key>Find</key>
<data>
AEFQUExFIFNTRAA=
</data>
<key>Name</key>
<string>IOAHCIBlockStorage</string>
<key>Replace</key>
<data>
AAAAAAAAAAAAAAA=
</data>
</dict>
 
Strange....

I reinstalled Yosemite on my main SSD drive. I attempted to run TRIM Enabler, but it doesn't work (just restarts the computer then turns off).

I attempted to use the other method you guys posted, but it doesn't work either. I used Clover Configurator to put it in, but it did nothing.

Do you have to click the InfoPlistPatch or something?
 
Clover Configurator was adding in the wrong values upon save.

After manually changing the values into the Config.plist file....it works.

Thank you.
 
Clover

<dict>
<key>Comment</key>
<string>Trim Enabler</string>
<key>Find</key>
<data>
AEFQUExFIFNTRAA=
</data>
<key>Name</key>
<string>IOAHCIBlockStorage</string>
<key>Replace</key>
<data>
AAAAAAAAAAAAAAA=
</data>
</dict>

It's not correct. The following code works with Yosemite 10.10. I'm using it.

Code:
<dict>
            <key>Comment</key>
            <string>Trim Enabler</string>
            <key>Find</key>
            <data>
            [COLOR=#ff0000][B]QVBQTEUgU1NEAA==[/B][/COLOR]
            </data>
            <key>Name</key>
            <string>IOAHCIBlockStorage</string>
            <key>Replace</key>
            <data>
            [COLOR=#0000ff]AAAAAAAAAAAAAAA=[/COLOR]
            </data>
</dict>
 
Status
Not open for further replies.
Back
Top