All Projects → stevezhengshiqi → One Key Cpufriend

stevezhengshiqi / One Key Cpufriend

Generate customized CPUFriendDataProvider.kext for dynamic macOS CPU power management

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to One Key Cpufriend

Xiaomi Air I5 7200u
小米笔记本Air 13.3 7代黑苹果配置 / Hackintosh EFI for Xiaomi Notebook Air 13.3
Stars: ✭ 131 (-32.47%)
Mutual labels:  hackintosh
Xps13 9360 Hackintosh
macOS on XPS-9360
Stars: ✭ 151 (-22.16%)
Mutual labels:  hackintosh
Lazy Hackintosh Image Generator
This automatical app makes Hackintosh installer from original Macintosh Installer app/disk image.
Stars: ✭ 180 (-7.22%)
Mutual labels:  hackintosh
Xps13 9360 I5 8250u Macos
Hackintosh macOS Mojave 10.14 on XPS13-9360 黑苹果10.14安装配置及教程
Stars: ✭ 134 (-30.93%)
Mutual labels:  hackintosh
Thinkpad T460s Macos Opencore
Bootloader configuration for macOS on T460s and possibly others 6th gen ThinkPads
Stars: ✭ 146 (-24.74%)
Mutual labels:  hackintosh
Hackintosh
Hackintosh v3 (i7-9700K + Radeon RX 5700 XT) - Clover Configuration + Kexts
Stars: ✭ 162 (-16.49%)
Mutual labels:  hackintosh
T440p Hackintosh
Thinkpad T440p Hackintosh Catalina (10.15.4) Guide
Stars: ✭ 126 (-35.05%)
Mutual labels:  hackintosh
Dell 7460 7560 Hackintosh
戴尔燃7000系列黑苹果安装和日常使用EFI
Stars: ✭ 188 (-3.09%)
Mutual labels:  hackintosh
Deskmini
Hackintosh DeskMini 310 - 黑苹果 - OpenCore - LTS长期支持 - Big Sur
Stars: ✭ 148 (-23.71%)
Mutual labels:  hackintosh
Opencore Document Zh hans
[非官方/Unofficial] OpenCore Bootloader 参考手册简体中文翻译
Stars: ✭ 169 (-12.89%)
Mutual labels:  hackintosh
Osx Kvm
Run macOS on QEMU/KVM. With OpenCore + Big Sur + Monterey support now! Only commercial (paid) support is available now to avoid spammy issues. No Mac system is required.
Stars: ✭ 12,926 (+6562.89%)
Mutual labels:  hackintosh
Xiaomi Notebook Air 1gen
Xiaomi Notebook Air 1rst Gen
Stars: ✭ 144 (-25.77%)
Mutual labels:  hackintosh
Matebook 13 2019 Oc Efi
Matebook 13/14 2019/2020 OpenCore黑苹果 hackintosh
Stars: ✭ 161 (-17.01%)
Mutual labels:  hackintosh
Lenovo Thinkpad T450 Macos Catalina
Lenovo ThinkPad T450 || macOS Catalina || Hotpatched || Broadwell || *** iMessage: [email protected] ***
Stars: ✭ 132 (-31.96%)
Mutual labels:  hackintosh
Asrock Z370m Pro4 Hackintosh
Happy Hackintosh, Apple Tax cut!
Stars: ✭ 180 (-7.22%)
Mutual labels:  hackintosh
Xps15 9560 High Sierra
XPS15-9560 黑苹果10.13
Stars: ✭ 129 (-33.51%)
Mutual labels:  hackintosh
Asus Zenbook Hackintosh
Run macOS on Asus Zenbook with OpenCore
Stars: ✭ 155 (-20.1%)
Mutual labels:  hackintosh
Xiaomi Pro Hackintosh
XiaoMi NoteBook Pro Hackintosh
Stars: ✭ 2,348 (+1110.31%)
Mutual labels:  hackintosh
Matebook X Pro 2018
macOS on Huawei Matebook X Pro 2018
Stars: ✭ 180 (-7.22%)
Mutual labels:  hackintosh
Nucintosh
Intel NUC hackintosh stuff
Stars: ✭ 162 (-16.49%)
Mutual labels:  hackintosh

Modify macOS CPU Performance

English | 中文

Instruction

The script is only for most 5th-10th generation CPU yet. I will try to add support for more models if needed.

The script can modify low frequency mode and energy performance preference, and use ResourceConverter.sh to generate customized CPUFriendDataProvider.kext.

By using this script, no file under the System folder will be edited. If you are not happy with the modification, just remove CPUFriend*.kext from /CLOVER/kexts/Other/ and restart.

Before install

  • Read CPUFriend WARNING
  • Good network
  • If you have FakeCPUID argument in config.plist, this script may cause issue
  • Make sure IOPlatformPluginFamily.kext untouched
  • Make sure Lilu is working
  • Make sure you are using correct SMBIOS model
  • plugin-type=1, often injected by SSDT-PLUG or SSDT-XCPM

How to install

  • Run the following command in Terminal:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/stevezhengshiqi/one-key-cpufriend/main/one-key-cpufriend.sh)"
  • For Clover users:

    • Copy CPUFriend.kext and CPUFriendDataProvider.kext from desktop to /CLOVER/kexts/Other/ and restart.
  • For OC users:

    • Copy CPUFriend.kext and CPUFriendDataProvider.kext from desktop to /OC/Kexts/.
    • Open /OC/config.plist and add the following code into Kernel - Add:
<dict>
    <key>Arch</key>
    <string>x86_64</string>
    <key>BundlePath</key>
    <string>CPUFriend.kext</string>
    <key>Comment</key>
    <string>Power management data injector</string>
    <key>Enabled</key>
    <true/>
    <key>ExecutablePath</key>
    <string>Contents/MacOS/CPUFriend</string>
    <key>MaxKernel</key>
    <string></string>
    <key>MinKernel</key>
    <string>12.0.0</string>
    <key>PlistPath</key>
    <string>Contents/Info.plist</string>
</dict>
<dict>
    <key>Arch</key>
    <string>x86_64</string>
    <key>BundlePath</key>
    <string>CPUFriendDataProvider.kext</string>
    <key>Comment</key>
    <string>Power management data</string>
    <key>Enabled</key>
    <true/>
    <key>ExecutablePath</key>
    <string></string>
    <key>MaxKernel</key>
    <string></string>
    <key>MinKernel</key>
    <string>12.0.0</string>
    <key>PlistPath</key>
    <string>Contents/Info.plist</string>
</dict>

Recovery

  • For Clover users:

    • If you are not happy with the modification, just remove CPUFriend.kext and CPUFriendDataProvider.kext from /CLOVER/kexts/Other/ and restart.

    • If unfortunately, you can't boot into the system, and you are sure the issue is caused by CPUFriend*.kext,

      • Press Space when you are in Clover page
      • Use keyboard to choose Block Injected kexts - Other
      • Check CPUFriend.kext and CPUFriendDataProvider.kext
      • Return to the main menu and boot into the system, then delete CPUFriend*.kext from your CLOVER folder
  • For OC users:

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].