mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-20 18:54:30 +10:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68cf4d1e7d | ||
|
|
847b26bf47 | ||
|
|
c6eb016d85 |
@@ -1,5 +1,8 @@
|
|||||||
# OpenCore Legacy Patcher changelog
|
# OpenCore Legacy Patcher changelog
|
||||||
|
|
||||||
|
## 0.0.3
|
||||||
|
- Fix Wireless patch logic
|
||||||
|
|
||||||
## 0.0.2
|
## 0.0.2
|
||||||
- Expand IOHIDFamily Patch to all Nvidia chipsets
|
- Expand IOHIDFamily Patch to all Nvidia chipsets
|
||||||
- Fix Airdrop 1.0 support
|
- Fix Airdrop 1.0 support
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ import zipfile
|
|||||||
from Resources import *
|
from Resources import *
|
||||||
|
|
||||||
# List build versions
|
# List build versions
|
||||||
patcher_version = "0.0.2"
|
patcher_version = "0.0.3"
|
||||||
|
|
||||||
CustomSMBIOS=False
|
CustomSMBIOS=False
|
||||||
MainMenu=True
|
MainMenu=True
|
||||||
|
|||||||
@@ -150,13 +150,13 @@ def BuildEFI():
|
|||||||
"<false/><!--AirPortBrcmNIC_Injector-->",
|
"<false/><!--AirPortBrcmNIC_Injector-->",
|
||||||
"<true/><!--AirPortBrcmNIC_Injector-->"
|
"<true/><!--AirPortBrcmNIC_Injector-->"
|
||||||
)
|
)
|
||||||
if current_model in ModelArray.EthernetNvidia
|
if current_model in ModelArray.EthernetNvidia:
|
||||||
# Nvidia chipsets all have the same path to ARPT
|
# Nvidia chipsets all have the same path to ARPT
|
||||||
Versions.plist_data = Versions.plist_data.replace(
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
"#PciRoot(0x0)/Pci(0x1C,0x1)Pci(0x0,0x0)",
|
"#PciRoot(0x0)/Pci(0x1C,0x1)Pci(0x0,0x0)",
|
||||||
"PciRoot(0x0)/Pci(0x15,0x0)Pci(0x0,0x0)"
|
"PciRoot(0x0)/Pci(0x15,0x0)Pci(0x0,0x0)"
|
||||||
)
|
)
|
||||||
if current_model in ("MacBookAir2,1", "MacBookAir3,1", "MacBookAir3,2" )
|
if current_model in ("MacBookAir2,1", "MacBookAir3,1", "MacBookAir3,2" ):
|
||||||
Versions.plist_data = Versions.plist_data.replace(
|
Versions.plist_data = Versions.plist_data.replace(
|
||||||
"#PciRoot(0x0)/Pci(0x1C,0x1)Pci(0x0,0x0)",
|
"#PciRoot(0x0)/Pci(0x1C,0x1)Pci(0x0,0x0)",
|
||||||
"PciRoot(0x0)/Pci(0x15,0x0)Pci(0x0,0x0)"
|
"PciRoot(0x0)/Pci(0x15,0x0)Pci(0x0,0x0)"
|
||||||
|
|||||||
Reference in New Issue
Block a user