Skip to content

Commit d15d691

Browse files
committed
Expand IOHIDFamily Patch to all Nvidia chipsets
1 parent a8e2d1a commit d15d691

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# OpenCore Legacy Patcher changelog
22

33
## 0.0.2
4+
- Expand IOHIDFamily Patch to all Nvidia chipsets
45

56
## 0.0.1
67
- Inital developer preview

Resources/BuildOpenCore.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,12 @@ def BuildEFI():
161161
"#PciRoot(0x0)/Pci(0x1C,0x1)Pci(0x0,0x0)",
162162
"PciRoot(0x0)/Pci(0x1C,0x1)Pci(0x0,0x0)"
163163
)
164+
if current_model in ModelArray.LegacyHID:
165+
Versions.plist_data = Versions.plist_data.replace(
166+
"<false/><!--IOHIDFamily-->",
167+
"<true/><!--IOHIDFamily-->"
168+
)
169+
164170
usb_map_path = os.path.join(Versions.current_path, "payloads/Kexts/Maps/Zip/" "USB-Map-%s.zip" % current_model)
165171
if os.path.exists(usb_map_path):
166172
print("- Adding USB Map for %s" % current_model)

0 commit comments

Comments
 (0)