Contribute
Register

cpu package multiplier can edit ?

Status
Not open for further replies.
i replace ssdt for you it error

You might have to change sysdef to MacBookPro8,1.

And... it just might not work. There might be something in AppleIntelCPUPowerManagement that requires turbo in SSDT for CPUs that have it...

FYI: The kext I pointed to DisableTurboBoost does work. I'm trying it on my desktop right now...
 
You might have to change sysdef to MacBookPro8,1.

And... it just might not work. There might be something in AppleIntelCPUPowerManagement that requires turbo in SSDT for CPUs that have it...

i request next ver HP ProBook Installer can disableturboboost please :p
 
i install kext for you it not work

You probably didn't load it. It will not load automatically (when I have time I'll look into finding a way to do that).

Assuming you installed it to /S/L/E, you can load it via Terminal:

Code:
sudo kextload /System/Library/Extensions/DisableTurboBoost.kext
 
Very THANK RehabMan :clap::clap::clap:
 
how sudo kextload /System/Library/Extensions/DisableTurboBoost.kext in terminal Every time startup mac ?
 
how sudo kextload /System/Library/Extensions/DisableTurboBoost.kext in terminal Every time startup mac ?

Create a file in /Library/LaunchDaemons that does it:

org.whatever.disableturboboost.plist:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>org.whatever.disableturboboost</string>
    <key>RunAtLoad</key>
    <true/>
    <key>KeepAlive</key>
    <false/>
    <key>ProgramArguments</key>
    <array>
        <string>/sbin/kextload</string>
        <string>/System/Library/Extensions/DisableTurboBoost.kext</string>
    </array>
</dict>
</plist>

Make sure it has correct owner:
Code:
sudo chown 0:0 /Library/LaunchDaemons/org.whatever.disableturboboost.plist
 
THANK RehabMan

i Create file org.whatever.disableturboboost.plist Share
 

Attachments

  • org.whatever.disableturboboost.plist.zip
    877 bytes · Views: 86
Status
Not open for further replies.
Back
Top