多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] # 【指南】笔记本的原生电池管理 英文原文:https://www.tonymacx86.com/threads/guide-native-power-management-for-laptops.175801/ # 概述 Power Management should be one of the first things implemented when trying to install OS X on a laptop. Because of heat/noise and battery life issues, using NullCPUPowerManagement is not a realistic option on a laptop. Fortunately, with Clover, NullCPUPowerManagement is never needed. This guide will assume you started by following my Clover guide for laptops: http://www.tonymacx86.com/el-capita...de-booting-os-x-installer-laptops-clover.html # 使用 `ssdtPRGen.sh` 自定义 `SSDT.aml` Use the ssdtPRGen.sh script by Pike R. Alpha: https://github.com/Piker-Alpha/ssdtPRGen.sh Instructions for using it are provided in the README. The generated SSDT.aml should be placed on the EFI partition at /EFI/Clover/ACPI/patched/SSDT.aml. Based on the current instructions at the README, what follows is a synopsis... To prepare, you only need to do the first two commands: ``` cd ~ curl -o ./ssdtPRGen.sh https://raw.githubusercontent.com/Piker-Alpha/ssdtPRGen.sh/master/ssdtPRGen.sh chmod +x ./ssdtPRGen.sh ```