最新Clover配置文件心得分享
本帖最后由 iE61 于 2014-10-3 15:09 编辑昨天把Clover更新到最新(v2936), 就顺便研究了一下关于Config.plist的wiki(http://clover-wiki.zetam.org/Configuration#Config.plist-structure)
有了一些心得, 我看了一下论坛好像没人提到, 分享一下吧:
1. 可能是早期版本留下的键值: <key>PCI</key> 新版里去掉了, 里面的InjectClockID, USBFixOwnership, USBInjection, 改成:
<key>Devices</key>
<dict>
<key>USB</key>
<dict>
<key>AddClockID</key>
<false/>
<key>FixOwnership</key>
<true/>
<key>Inject</key>
<true/>
</dict>
</dict>
改完后那个有点困扰我的 USBF: ... EHCI controller unable to take control from BIOS ... 错误没了.
2. 省电模式C2, C4, C6原来没研究过, 百度了一下, 各位有兴趣的可参考http://blog.chinaunix.net/uid-25871104-id-3072582.html
现在是这么配置:
<key>CPU</key>
<dict>
<key>C2</key>
<true/>
<key>C4</key>
<true/>
<key>C6</key>
<true/>
</dict>
根据自己CPU改过后好像进入睡眠更快了.
3. 现在启动参数放在Boot里, 不是SystemParameters了, 附上我的:
<key>Boot</key>
<dict>
<key>Arguments</key>
<string>nvda_drv=1 -v</string>
<key>DefaultVolume</key>
<string>OSX</string>
<key>Timeout</key>
<integer>8</integer>
<key>XMPDetection</key>
<true/>
</dict>
支持一下,不过楼主说的参数置顶的帖子好像有说到(*^_^*) 是啊,学习一下心得啊
页:
[1]