本帖最后由 lisai9093 于 2015-4-22 18:48 编辑
Reference: http://www.tonymacx86.com/yosemite-laptop-support/145427-fix-intel-hd4400-hd4600-mobile-yosemite.html
更新:得益于Rehabman 大神的Fake-PCI-ID 驱动,现在仿冒Vendor/Device ID 变得相当容易。这样也免去了以往的打补丁,而且避免了系统更新后的各种问题。
1. 注入显卡ID,也就是仿冒成台式机显卡。利用MaciASL 进行打补丁操作:- into method label _DSM parent_adr 0x00020000 remove_entry;
- into device name_adr 0x00020000 insert
- begin
- Method (_DSM, 4, NotSerialized)\n
- {\n
- If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }\n
- Return (Package()\n
- {\n
- "device-id", Buffer() { 0x12, 0x04, 0x00, 0x00 },\n
- "AAPL,ig-platform-id", Buffer() { 0x06, 0x00, 0x26, 0x0a },\n
- "hda-gfx", Buffer() { "onboard-1" },\n
- "model", Buffer() { "Intel HD 4600" },\n
- })\n
- }\n
- end;
复制代码
2. 安装Fake-PCI-ID 的两个驱动
下载:
Archive.zip
(16.02 KB, 下载次数: 1686)
到此教程结束,如有问题欢迎反馈~
|