Add USB mappings for macOS 26

This commit is contained in:
Jazzzny
2025-06-30 09:10:40 -04:00
parent 9be3dc8d58
commit feca197ade
5 changed files with 10711 additions and 19 deletions

View File

@@ -689,10 +689,18 @@ class Constants:
def map_kext_folder(self):
return self.kexts_path / Path("USB-Map.kext")
@property
def map_kext_folder_tahoe(self):
return self.kexts_path / Path("USB-Map-Tahoe.kext")
@property
def map_contents_folder(self):
return self.map_kext_folder / Path("Contents")
@property
def map_contents_folder_tahoe(self):
return self.map_kext_folder_tahoe / Path("Contents")
@property
def pp_kext_folder(self):
return self.kexts_path / Path("CPUFriendDataProvider.kext")