├── EFI ├── BOOT │ └── BOOTx64.efi └── OC │ ├── ACPI │ ├── CompileAll.bat │ ├── DecompileAll.bat │ ├── SSDT-ALSD.aml │ ├── SSDT-AWAC.aml │ ├── SSDT-DMAC.aml │ ├── SSDT-EC-USBX.aml │ ├── SSDT-EC.aml │ ├── SSDT-MEM2.aml │ ├── SSDT-NoHybGfx.aml │ ├── SSDT-OCWork-dell.aml │ ├── SSDT-PLUG.aml │ ├── SSDT-PNLF-CFL.aml │ ├── SSDT-PPMC.aml │ ├── SSDT-RTC.aml │ ├── SSDT-SBUS-MCHC.aml │ ├── SSDT-USBX.aml │ ├── SSDT-XOSI.aml │ ├── SSDT-dGPU-Off.aml │ └── iasl.bat │ ├── Bootstrap │ └── Bootstrap.efi │ ├── Drivers │ ├── HFSPlus.efi │ ├── OpenCanopy.efi │ └── OpenRuntime.efi │ ├── Kexts │ ├── AirportItlwm.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── AirportItlwm │ ├── AppleALC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleALC │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── AppleRTL815XEthernet110.kext │ │ └── Contents │ │ │ ├── CodeResources │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── AppleRTL815XEthernet110 │ │ │ ├── Resources │ │ │ └── English.lproj │ │ │ │ └── Localizable.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── CPUFriend.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── CPUFriend │ ├── CPUFriendDataProvider.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── FakePCIID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── FakePCIID │ ├── FakePCIID_Intel_HDMI_Audio.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── IntelBluetoothFirmware.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothFirmware │ ├── IntelBluetoothInjector.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── IntelBluetoothInjector │ ├── Lilu.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Lilu │ ├── NoTouchID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── NoTouchID │ ├── SMCBatteryManager.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── SMCBatteryManager │ │ │ └── Resources │ │ │ └── SSDT-BATC.dsl │ ├── SMCDellSensors.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCDellSensors │ ├── SMCLightSensor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCLightSensor │ ├── SMCProcessor.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCProcessor │ ├── SMCSuperIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── SMCSuperIO │ ├── Sinetek-rtsx.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── Sinetek-rtsx │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── USBMap.kext │ │ └── Contents │ │ │ └── Info.plist │ ├── VirtualSMC.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VirtualSMC │ ├── VoltageShift.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoltageShift │ │ │ ├── Resources │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── VoodooI2C.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooI2C │ │ │ └── PlugIns │ │ │ ├── VoodooGPIO.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooGPIO │ │ │ ├── VoodooI2CServices.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooI2CServices │ │ │ ├── VoodooInput.kext.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── VoodooInput │ │ │ └── VoodooInput.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── VoodooI2CHID.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooI2CHID │ ├── VoodooPS2Controller.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooPS2Controller │ │ │ └── PlugIns │ │ │ ├── VoodooInput.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooInput │ │ │ ├── VoodooPS2Keyboard.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Keyboard │ │ │ ├── VoodooPS2Mouse.kext │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── MacOS │ │ │ │ └── VoodooPS2Mouse │ │ │ └── VoodooPS2Trackpad.kext │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Trackpad │ └── WhateverGreen.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── WhateverGreen │ ├── OpenCore.efi │ ├── Resources │ ├── Font │ │ ├── Font_1x.bin │ │ ├── Font_1x.png │ │ ├── Font_2x.bin │ │ └── Font_2x.png │ ├── Image │ │ ├── Apple.icns │ │ ├── AppleRecv.icns │ │ ├── AppleTM.icns │ │ ├── Cursor.icns │ │ ├── ExtAppleRecv.icns │ │ ├── ExtAppleTM.icns │ │ ├── ExtHardDrive.icns │ │ ├── HardDrive.icns │ │ ├── OldAppleRecv.icns │ │ ├── OldAppleTM.icns │ │ ├── OldCursor.icns │ │ ├── OldExtAppleRecv.icns │ │ ├── OldExtAppleTM.icns │ │ ├── OldExtHardDrive.icns │ │ ├── OldHardDrive.icns │ │ ├── OldSelected.icns │ │ ├── OldSelector.icns │ │ ├── OldShell.icns │ │ ├── OldTool.icns │ │ ├── OldWindows.icns │ │ ├── Selected.icns │ │ ├── Selector.icns │ │ ├── Shell.icns │ │ ├── Tool.icns │ │ └── Windows.icns │ └── Label │ │ ├── Apple.l2x │ │ ├── Apple.lbl │ │ ├── AppleRecv.l2x │ │ ├── AppleRecv.lbl │ │ ├── AppleTM.l2x │ │ ├── AppleTM.lbl │ │ ├── EFIBoot.l2x │ │ ├── EFIBoot.lbl │ │ ├── Other.l2x │ │ ├── Other.lbl │ │ ├── ResetNVRAM.l2x │ │ ├── ResetNVRAM.lbl │ │ ├── Shell.l2x │ │ ├── Shell.lbl │ │ ├── Tool.l2x │ │ ├── Tool.lbl │ │ ├── Windows.l2x │ │ └── Windows.lbl │ ├── Tools │ ├── OpenShell.efi │ ├── VerifyMsrE2.efi │ └── modGRUBShell.efi │ └── config.plist ├── README.md ├── Screenshot.png └── boot /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/CompileAll.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | for %%f in (*.dsl) do ( 3 | echo %%~f 4 | start /B "" "C:\Program Files\IASL\iasl.exe" %%~f 5 | ) -------------------------------------------------------------------------------- /EFI/OC/ACPI/DecompileAll.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | for %%f in (*.aml) do ( 3 | echo %%~f 4 | start /B "" "C:\Program Files\IASL\iasl.exe" %%~f 5 | ) -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-ALSD.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-ALSD.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-DMAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-DMAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-MEM2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-MEM2.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-NoHybGfx.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-NoHybGfx.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-OCWork-dell.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-OCWork-dell.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF-CFL.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-PNLF-CFL.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PPMC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-PPMC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-RTC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-RTC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-SBUS-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-SBUS-MCHC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-dGPU-Off.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/ACPI/SSDT-dGPU-Off.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/iasl.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | start /B "" "C:\Program Files\IASL\iasl.exe" %* -------------------------------------------------------------------------------- /EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Drivers/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwm.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19G73 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportItlwm 11 | CFBundleIdentifier 12 | com.zxystd.AirportItlwm 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportItlwm 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E708 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16C58 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1160 39 | DTXcodeBuild 40 | 11E708 41 | IOKitPersonalities 42 | 43 | itlwm 44 | 45 | CFBundleIdentifier 46 | com.zxystd.AirportItlwm 47 | IOClass 48 | AirportItlwm 49 | IOMatchCategory 50 | IODefaultMatchCategory 51 | IOPCIPrimaryMatch 52 | 0x00008086&0x0000ffff 53 | IOProbeScore 54 | 2000 55 | IOProviderClass 56 | IOPCIDevice 57 | WiFiConfig 58 | 59 | WiFi_1 60 | 61 | password 62 | zxyssdt112233 63 | ssid 64 | ssdt 65 | 66 | WiFi_2 67 | 68 | password 69 | zxyssdt112233 70 | ssid 71 | ssdt_5G 72 | 73 | WiFi_3 74 | 75 | password 76 | 77 | ssid 78 | Redmi 79 | 80 | WiFi_4 81 | 82 | password 83 | 9utc5c5f 84 | ssid 85 | CMCC-KtG6 86 | 87 | 88 | 89 | 90 | LSMinimumSystemVersion 91 | 10.15 92 | NSHumanReadableCopyright 93 | Copyright © 2020 钟先耀. All rights reserved. 94 | OSBundleLibraries 95 | 96 | com.apple.iokit.IO80211Family 97 | 1200.12.2b1 98 | com.apple.iokit.IONetworkingFamily 99 | 3.2 100 | com.apple.iokit.IOPCIFamily 101 | 2.9 102 | com.apple.kpi.bsd 103 | 16.7 104 | com.apple.kpi.iokit 105 | 16.7 106 | com.apple.kpi.libkern 107 | 16.7 108 | com.apple.kpi.mach 109 | 16.7 110 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/MacOS/AppleRTL815XEthernet110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/MacOS/AppleRTL815XEthernet110 -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/Resources/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/English.lproj/Localizable.strings 8 | 9 | hash 10 | 11 | KMQe+aEy0lJbzUSjSbr7Fw4FCG4= 12 | 13 | optional 14 | 15 | 16 | 17 | files2 18 | 19 | Resources/English.lproj/Localizable.strings 20 | 21 | hash 22 | 23 | KMQe+aEy0lJbzUSjSbr7Fw4FCG4= 24 | 25 | hash2 26 | 27 | biEsGHeIeC2uFmcFaabuZ7ADzEKTEVmZq9hxdm6pykY= 28 | 29 | optional 30 | 31 | 32 | 33 | rules 34 | 35 | ^Resources/ 36 | 37 | ^Resources/.*\.lproj/ 38 | 39 | optional 40 | 41 | weight 42 | 1000 43 | 44 | ^Resources/.*\.lproj/locversion.plist$ 45 | 46 | omit 47 | 48 | weight 49 | 1100 50 | 51 | ^Resources/Base\.lproj/ 52 | 53 | weight 54 | 1010 55 | 56 | ^version.plist$ 57 | 58 | 59 | rules2 60 | 61 | .*\.dSYM($|/) 62 | 63 | weight 64 | 11 65 | 66 | ^(.*/)?\.DS_Store$ 67 | 68 | omit 69 | 70 | weight 71 | 2000 72 | 73 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 74 | 75 | nested 76 | 77 | weight 78 | 10 79 | 80 | ^.* 81 | 82 | ^Info\.plist$ 83 | 84 | omit 85 | 86 | weight 87 | 20 88 | 89 | ^PkgInfo$ 90 | 91 | omit 92 | 93 | weight 94 | 20 95 | 96 | ^Resources/ 97 | 98 | weight 99 | 20 100 | 101 | ^Resources/.*\.lproj/ 102 | 103 | optional 104 | 105 | weight 106 | 1000 107 | 108 | ^Resources/.*\.lproj/locversion.plist$ 109 | 110 | omit 111 | 112 | weight 113 | 1100 114 | 115 | ^Resources/Base\.lproj/ 116 | 117 | weight 118 | 1010 119 | 120 | ^[^/]+$ 121 | 122 | nested 123 | 124 | weight 125 | 10 126 | 127 | ^embedded\.provisionprofile$ 128 | 129 | weight 130 | 20 131 | 132 | ^version\.plist$ 133 | 134 | weight 135 | 20 136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/CPUFriend.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | CPUFriend 11 | CFBundleIdentifier 12 | org.vanilla.driver.CPUFriend 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | CPUFriend 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | CPUFriend 46 | 47 | CFBundleIdentifier 48 | org.vanilla.driver.CPUFriend 49 | IOClass 50 | CPUFriend 51 | IOMatchCategory 52 | CPUFriend 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | CPUFriendPlatform 59 | 60 | CFBundleIdentifier 61 | org.vanilla.driver.CPUFriend 62 | IOClass 63 | CPUFriendData 64 | IOProbeScore 65 | 6000 66 | IOPropertyMatch 67 | 68 | IOCPUNumber 69 | 0 70 | 71 | IOProviderClass 72 | AppleACPICPU 73 | IOResourceMatch 74 | ACPI 75 | 76 | 77 | LSMinimumSystemVersion 78 | 10.8 79 | NSHumanReadableCopyright 80 | Copyright © 2017 - 2019 PMheart. All rights reserved. 81 | OSBundleCompatibleVersion 82 | 1.0 83 | OSBundleLibraries 84 | 85 | as.vit9696.Lilu 86 | 1.2.0 87 | com.apple.iokit.IOACPIFamily 88 | 1.0.0d1 89 | com.apple.kpi.bsd 90 | 12.0.0 91 | com.apple.kpi.dsep 92 | 12.0.0 93 | com.apple.kpi.iokit 94 | 12.0.0 95 | com.apple.kpi.libkern 96 | 12.0.0 97 | com.apple.kpi.mach 98 | 12.0.0 99 | com.apple.kpi.unsupported 100 | 12.0.0 101 | 102 | OSBundleRequired 103 | Root 104 | 105 | 106 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend -------------------------------------------------------------------------------- /EFI/OC/Kexts/FakePCIID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | FakePCIID 11 | CFBundleIdentifier 12 | org.rehabman.driver.FakePCIID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | FakePCIID 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.3.15 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.3.15 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 9F2000 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 10M2518 37 | DTSDKName 38 | macosx10.6 39 | DTXcode 40 | 0941 41 | DTXcodeBuild 42 | 9F2000 43 | OSBundleCompatibleVersion 44 | 1.3.15 45 | OSBundleLibraries 46 | 47 | com.apple.iokit.IOPCIFamily 48 | 1.0.0b1 49 | com.apple.kpi.bsd 50 | 8.0.0 51 | com.apple.kpi.iokit 52 | 8.0.0 53 | com.apple.kpi.libkern 54 | 8.0.0 55 | com.apple.kpi.mach 56 | 8.0.0 57 | com.apple.kpi.unsupported 58 | 8.0.0 59 | 60 | OSBundleRequired 61 | Root 62 | Source Code 63 | https://github.com/RehabMan/FakePCIID 64 | 65 | 66 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/FakePCIID.kext/Contents/MacOS/FakePCIID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/FakePCIID.kext/Contents/MacOS/FakePCIID -------------------------------------------------------------------------------- /EFI/OC/Kexts/FakePCIID_Intel_HDMI_Audio.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18A391 7 | CFBundleIdentifier 8 | org.rehabman.injector.FakePCIID-Intel-HDMI-Audio 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | FakePCIID_Intel_HDMI_Audio 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.3.15 17 | CFBundleSupportedPlatforms 18 | 19 | MacOSX 20 | 21 | CFBundleVersion 22 | 1.3.15 23 | DTCompiler 24 | com.apple.compilers.llvm.clang.1_0 25 | DTPlatformBuild 26 | 9F2000 27 | DTPlatformVersion 28 | GM 29 | DTSDKBuild 30 | 10M2518 31 | DTSDKName 32 | macosx10.6 33 | DTXcode 34 | 0941 35 | DTXcodeBuild 36 | 9F2000 37 | IOKitPersonalities 38 | 39 | Intel HDMI Audio - 100-series 0x9d74 0x9d71 0x9d70 0xa171 40 | 41 | CFBundleIdentifier 42 | org.rehabman.driver.FakePCIID 43 | FakeProperties 44 | 45 | RM,device-id 46 | 47 | cKEAAA== 48 | 49 | 50 | IOClass 51 | FakePCIID 52 | IOMatchCategory 53 | FakePCIID 54 | IOPCIPrimaryMatch 55 | 0x9d748086 0x9d718086 0x9d708086 0xa1718086 56 | IOProviderClass 57 | IOPCIDevice 58 | 59 | Intel HDMI Audio - 100-series 0xa170 60 | 61 | CFBundleIdentifier 62 | org.rehabman.driver.FakePCIID 63 | FakeProperties 64 | 65 | RM,device-id 66 | 67 | cJ0AAA== 68 | 69 | 70 | IOClass 71 | FakePCIID 72 | IOMatchCategory 73 | FakePCIID 74 | IOPCIPrimaryMatch 75 | 0xa1708086 76 | IOProviderClass 77 | IOPCIDevice 78 | 79 | Intel HDMI Audio - 200-series 0xa2f0 80 | 81 | CFBundleIdentifier 82 | org.rehabman.driver.FakePCIID 83 | FakeProperties 84 | 85 | RM,device-id 86 | 87 | cKEAAA== 88 | 89 | 90 | IOClass 91 | FakePCIID 92 | IOMatchCategory 93 | FakePCIID 94 | IOPCIPrimaryMatch 95 | 0xa2f08086 96 | IOProviderClass 97 | IOPCIDevice 98 | 99 | Intel HDMI Audio - 300-series 0xa348 0x9dc8 100 | 101 | CFBundleIdentifier 102 | org.rehabman.driver.FakePCIID 103 | FakeProperties 104 | 105 | RM,device-id 106 | 107 | cKEAAA== 108 | 109 | 110 | IOClass 111 | FakePCIID 112 | IOMatchCategory 113 | FakePCIID 114 | IOPCIPrimaryMatch 115 | 0xa3488086 0x9dc88086 116 | IOProviderClass 117 | IOPCIDevice 118 | 119 | Intel HDMI Audio - Haswell 120 | 121 | CFBundleIdentifier 122 | org.rehabman.driver.FakePCIID 123 | FakeProperties 124 | 125 | RM,device-id 126 | 127 | DAoAAA== 128 | 129 | 130 | IOClass 131 | FakePCIID 132 | IOMatchCategory 133 | FakePCIID 134 | IOPCIPrimaryMatch 135 | 0x0c0c8086 136 | IOProviderClass 137 | IOPCIDevice 138 | 139 | 140 | OSBundleRequired 141 | Root 142 | Source Code 143 | https://github.com/RehabMan/FakePCIID 144 | 145 | 146 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19G73 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | IntelBluetoothFirmware 11 | CFBundleIdentifier 12 | com.zxystd.IntelBluetoothFirmware 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | IntelBluetoothFirmware 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.2 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.2 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E608c 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16C58 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1150 39 | DTXcodeBuild 40 | 11E608c 41 | IOKitPersonalities 42 | 43 | IntelBluetoothFirmware_0026 44 | 45 | CFBundleIdentifier 46 | com.zxystd.IntelBluetoothFirmware 47 | IOClass 48 | IntelBluetoothFirmware 49 | IOMatchCategory 50 | IntelBluetoothFirmware 51 | IOProbeScore 52 | 4000 53 | IOProviderClass 54 | IOUSBHostDevice 55 | idProduct 56 | 38 57 | idVendor 58 | 32903 59 | 60 | IntelBluetoothFirmware_0032 61 | 62 | CFBundleIdentifier 63 | com.zxystd.IntelBluetoothFirmware 64 | IOClass 65 | IntelBluetoothFirmware 66 | IOMatchCategory 67 | IntelBluetoothFirmware 68 | IOProbeScore 69 | 4000 70 | IOProviderClass 71 | IOUSBHostDevice 72 | idProduct 73 | 50 74 | idVendor 75 | 32903 76 | 77 | IntelBluetoothFirmware_3165 78 | 79 | CFBundleIdentifier 80 | com.zxystd.IntelBluetoothFirmware 81 | IOClass 82 | IntelBluetoothFirmware 83 | IOMatchCategory 84 | IntelBluetoothFirmware 85 | IOProbeScore 86 | 4000 87 | IOProviderClass 88 | IOUSBHostDevice 89 | idProduct 90 | 2602 91 | idVendor 92 | 32903 93 | 94 | IntelBluetoothFirmware_3168 95 | 96 | CFBundleIdentifier 97 | com.zxystd.IntelBluetoothFirmware 98 | IOClass 99 | IntelBluetoothFirmware 100 | IOMatchCategory 101 | IntelBluetoothFirmware 102 | IOProbeScore 103 | 4000 104 | IOProviderClass 105 | IOUSBHostDevice 106 | idProduct 107 | 2727 108 | idVendor 109 | 32903 110 | 111 | IntelBluetoothFirmware_726x 112 | 113 | CFBundleIdentifier 114 | com.zxystd.IntelBluetoothFirmware 115 | IOClass 116 | IntelBluetoothFirmware 117 | IOMatchCategory 118 | IntelBluetoothFirmware 119 | IOProbeScore 120 | 4000 121 | IOProviderClass 122 | IOUSBHostDevice 123 | idProduct 124 | 2012 125 | idVendor 126 | 32903 127 | 128 | IntelBluetoothFirmware_8265 129 | 130 | CFBundleIdentifier 131 | com.zxystd.IntelBluetoothFirmware 132 | IOClass 133 | IntelBluetoothFirmware 134 | IOMatchCategory 135 | IntelBluetoothFirmware 136 | IOProbeScore 137 | 4000 138 | IOProviderClass 139 | IOUSBHostDevice 140 | idProduct 141 | 2603 142 | idVendor 143 | 32903 144 | 145 | IntelBluetoothFirmware_926x 146 | 147 | CFBundleIdentifier 148 | com.zxystd.IntelBluetoothFirmware 149 | IOClass 150 | IntelBluetoothFirmware 151 | IOMatchCategory 152 | IntelBluetoothFirmware 153 | IOProbeScore 154 | 4000 155 | IOProviderClass 156 | IOUSBHostDevice 157 | idProduct 158 | 37 159 | idVendor 160 | 32903 161 | 162 | IntelBluetoothFirmware_9560 163 | 164 | CFBundleIdentifier 165 | com.zxystd.IntelBluetoothFirmware 166 | IOClass 167 | IntelBluetoothFirmware 168 | IOMatchCategory 169 | IntelBluetoothFirmware 170 | IOProbeScore 171 | 4000 172 | IOProviderClass 173 | IOUSBHostDevice 174 | idProduct 175 | 2730 176 | idVendor 177 | 32903 178 | 179 | IntelBluetoothFirmware_ax200 180 | 181 | CFBundleIdentifier 182 | com.zxystd.IntelBluetoothFirmware 183 | IOClass 184 | IntelBluetoothFirmware 185 | IOMatchCategory 186 | IntelBluetoothFirmware 187 | IOProbeScore 188 | 4000 189 | IOProviderClass 190 | IOUSBHostDevice 191 | idProduct 192 | 41 193 | idVendor 194 | 32903 195 | 196 | 197 | LSMinimumSystemVersion 198 | 10.12 199 | NSHumanReadableCopyright 200 | Copyright © 2019 钟先耀. All rights reserved. 201 | OSBundleLibraries 202 | 203 | com.apple.iokit.IOUSBHostFamily 204 | 1.2 205 | com.apple.kpi.iokit 206 | 16.7 207 | com.apple.kpi.libkern 208 | 16.7 209 | com.apple.kpi.mach 210 | 16.7 211 | 212 | 213 | 214 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothInjector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19G73 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleIdentifier 10 | com.zxystd.IntelBluetoothInjector 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | IntelBluetoothInjector 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.1.2 19 | CFBundleSupportedPlatforms 20 | 21 | MacOSX 22 | 23 | CFBundleVersion 24 | 1.1.2 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 11E608c 29 | DTPlatformVersion 30 | GM 31 | DTSDKBuild 32 | 16C58 33 | DTSDKName 34 | macosx10.12 35 | DTXcode 36 | 1150 37 | DTXcodeBuild 38 | 11E608c 39 | IOKitPersonalities 40 | 41 | 0026 42 | 43 | CFBundleIdentifier 44 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 45 | IOClass 46 | BroadcomBluetoothHostControllerUSBTransport 47 | IOProbeScore 48 | 3000 49 | IOProviderClass 50 | IOUSBHostDevice 51 | idProduct 52 | 38 53 | idVendor 54 | 32903 55 | 56 | 0032 57 | 58 | CFBundleIdentifier 59 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 60 | IOClass 61 | BroadcomBluetoothHostControllerUSBTransport 62 | IOProbeScore 63 | 3000 64 | IOProviderClass 65 | IOUSBHostDevice 66 | idProduct 67 | 50 68 | idVendor 69 | 32903 70 | 71 | 3165ac 72 | 73 | CFBundleIdentifier 74 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 75 | IOClass 76 | BroadcomBluetoothHostControllerUSBTransport 77 | IOProbeScore 78 | 3000 79 | IOProviderClass 80 | IOUSBHostDevice 81 | idProduct 82 | 2602 83 | idVendor 84 | 32903 85 | 86 | 3168 87 | 88 | CFBundleIdentifier 89 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 90 | IOClass 91 | BroadcomBluetoothHostControllerUSBTransport 92 | IOProbeScore 93 | 3000 94 | IOProviderClass 95 | IOUSBHostDevice 96 | idProduct 97 | 2727 98 | idVendor 99 | 32903 100 | 101 | 726x 102 | 103 | CFBundleIdentifier 104 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 105 | IOClass 106 | BroadcomBluetoothHostControllerUSBTransport 107 | IOProbeScore 108 | 3000 109 | IOProviderClass 110 | IOUSBHostDevice 111 | idProduct 112 | 2012 113 | idVendor 114 | 32903 115 | 116 | 8265 117 | 118 | CFBundleIdentifier 119 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 120 | IOClass 121 | BroadcomBluetoothHostControllerUSBTransport 122 | IOProbeScore 123 | 3000 124 | IOProviderClass 125 | IOUSBHostDevice 126 | idProduct 127 | 2603 128 | idVendor 129 | 32903 130 | 131 | 926x 132 | 133 | CFBundleIdentifier 134 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 135 | IOClass 136 | BroadcomBluetoothHostControllerUSBTransport 137 | IOProbeScore 138 | 3000 139 | IOProviderClass 140 | IOUSBHostDevice 141 | idProduct 142 | 37 143 | idVendor 144 | 32903 145 | 146 | 9560 147 | 148 | CFBundleIdentifier 149 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 150 | IOClass 151 | BroadcomBluetoothHostControllerUSBTransport 152 | IOProbeScore 153 | 3000 154 | IOProviderClass 155 | IOUSBHostDevice 156 | idProduct 157 | 2730 158 | idVendor 159 | 32903 160 | 161 | ax200 162 | 163 | CFBundleIdentifier 164 | com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 165 | IOClass 166 | BroadcomBluetoothHostControllerUSBTransport 167 | IOProbeScore 168 | 3000 169 | IOProviderClass 170 | IOUSBHostDevice 171 | idProduct 172 | 41 173 | idVendor 174 | 32903 175 | 176 | 177 | LSMinimumSystemVersion 178 | 10.12 179 | NSHumanReadableCopyright 180 | Copyright © 2020 钟先耀. All rights reserved. 181 | OSBundleRequired 182 | Root 183 | 184 | 185 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/IntelBluetoothInjector.kext/Contents/MacOS/IntelBluetoothInjector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/IntelBluetoothInjector.kext/Contents/MacOS/IntelBluetoothInjector -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.8 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.8 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | as.vit9696.Lilu 46 | 47 | CFBundleIdentifier 48 | as.vit9696.Lilu 49 | IOClass 50 | Lilu 51 | IOMatchCategory 52 | Lilu 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.6 61 | NSHumanReadableCopyright 62 | Copyright © 2016-2020 vit9696. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.2.0 65 | OSBundleLibraries 66 | 67 | com.apple.kpi.bsd 68 | 10.0.0 69 | com.apple.kpi.dsep 70 | 10.0.0 71 | com.apple.kpi.iokit 72 | 10.0.0 73 | com.apple.kpi.libkern 74 | 10.0.0 75 | com.apple.kpi.mach 76 | 10.0.0 77 | com.apple.kpi.unsupported 78 | 10.0.0 79 | 80 | OSBundleRequired 81 | Root 82 | 83 | 84 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /EFI/OC/Kexts/NoTouchID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18G5033 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | NoTouchID 11 | CFBundleIdentifier 12 | xyz.racermaster.NoTouchID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NoTouchID 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11C504 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19B90 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1130 39 | DTXcodeBuild 40 | 11C504 41 | IOKitPersonalities 42 | 43 | NoTouchID 44 | 45 | CFBundleIdentifier 46 | xyz.racermaster.NoTouchID 47 | IOClass 48 | NoTouchID 49 | IOMatchCategory 50 | NoTouchID 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.13 59 | OSBundleCompatibleVersion 60 | 1.0 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.2.0 65 | com.apple.kpi.bsd 66 | 12.0.0 67 | com.apple.kpi.dsep 68 | 12.0.0 69 | com.apple.kpi.iokit 70 | 12.0.0 71 | com.apple.kpi.libkern 72 | 12.0.0 73 | com.apple.kpi.mach 74 | 12.0.0 75 | com.apple.kpi.unsupported 76 | 12.0.0 77 | 78 | OSBundleRequired 79 | Root 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/NoTouchID.kext/Contents/MacOS/NoTouchID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCBatteryManager 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCBatteryManager 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCBatteryManager 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E708 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1160 39 | DTXcodeBuild 40 | 11E708 41 | IOKitPersonalities 42 | 43 | IOSMBusController 44 | 45 | CFBundleIdentifier 46 | ru.usrsse2.SMCBatteryManager 47 | IOClass 48 | SMCSMBusController 49 | IOMatchCategory 50 | SMCSMBusController 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | SMCBatteryManager 57 | 58 | CFBundleIdentifier 59 | ru.usrsse2.SMCBatteryManager 60 | IOClass 61 | SMCBatteryManager 62 | IOMatchCategory 63 | SMCBatteryManager 64 | IOProviderClass 65 | IOResources 66 | IOResourceMatch 67 | IOKit 68 | 69 | 70 | LSMinimumSystemVersion 71 | 10.6 72 | NSHumanReadableCopyright 73 | Copyright © 2018 usrsse2. All rights reserved. 74 | OSBundleCompatibleVersion 75 | 1.0.0 76 | OSBundleLibraries 77 | 78 | as.vit9696.Lilu 79 | 1.2.0 80 | as.vit9696.VirtualSMC 81 | 1.0.0 82 | com.apple.iokit.IOACPIFamily 83 | 1.0.0d1 84 | com.apple.iokit.IOSMBusFamily 85 | 1.0.0 86 | com.apple.kpi.bsd 87 | 10.0.0 88 | com.apple.kpi.dsep 89 | 10.0.0 90 | com.apple.kpi.iokit 91 | 10.0.0 92 | com.apple.kpi.libkern 93 | 10.0.0 94 | com.apple.kpi.mach 95 | 10.0.0 96 | com.apple.kpi.unsupported 97 | 10.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- 1 | // SSDT-BATC.dsl 2 | // 3 | // Based on https://github.com/RehabMan/OS-X-ACPI-Battery-Driver/blob/master/SSDT-BATC.dsl 4 | // 5 | // An SSDT to combine two batteries into one 6 | // initial work/testing by ag6952563 (with assistance by RehabMan) 7 | // finalize into generic SSDT by RehabMan 8 | // some code cleanup/optimization/and bug fixing by RehabMan 9 | // modifications to work VirtualSMC SMCBatteryManager by armenio 10 | // add _BIX (easy, following the original code from RehabMan) by armenio 11 | // 12 | // OS X support for multiple batteries is a bit buggy. 13 | // This SSDT can be used to combine two batteries into one, 14 | // avoiding the bugs. 15 | // 16 | // It may need modification depending on the ACPI path of your 17 | // existing battery objects. 18 | // 19 | 20 | // IMPORTANT: 21 | // 22 | // To use this SSDT, you must also patch any Notify for either BAT0 or BAT1 23 | // objects. 24 | // 25 | // The Notify is used to tell the system when a battery is removed or added. 26 | // 27 | // Any code: 28 | // Notify (...BAT0, ...) 29 | // -or 30 | // Notify (...BAT1, ...) 31 | // 32 | // Must be changed to: 33 | // Notify (...BATC, ...) 34 | // 35 | // Refer to Dual Battery Support.md for patching details 36 | // 37 | 38 | DefinitionBlock ("", "SSDT", 2, "ACDT", "BATC", 0x00000000) 39 | { 40 | External (_SB_.PCI0.LPCB.EC, DeviceObj) 41 | External (_SB_.PCI0.LPCB.EC.BAT0, DeviceObj) 42 | External (_SB_.PCI0.LPCB.EC.BAT0._BIF, MethodObj) 43 | External (_SB_.PCI0.LPCB.EC.BAT0._BIX, MethodObj) 44 | External (_SB_.PCI0.LPCB.EC.BAT0._BST, MethodObj) 45 | External (_SB_.PCI0.LPCB.EC.BAT0._HID, IntObj) 46 | External (_SB_.PCI0.LPCB.EC.BAT0._STA, MethodObj) 47 | External (_SB_.PCI0.LPCB.EC.BAT1, DeviceObj) 48 | External (_SB_.PCI0.LPCB.EC.BAT1._BIF, MethodObj) 49 | External (_SB_.PCI0.LPCB.EC.BAT1._BIX, MethodObj) 50 | External (_SB_.PCI0.LPCB.EC.BAT1._BST, MethodObj) 51 | External (_SB_.PCI0.LPCB.EC.BAT1._HID, IntObj) 52 | External (_SB_.PCI0.LPCB.EC.BAT1._STA, MethodObj) 53 | 54 | Scope (\_SB.PCI0.LPCB.EC) 55 | { 56 | Device (BATC) 57 | { 58 | Name (_HID, EisaId ("PNP0C0A")) 59 | Name (_UID, 0x02) 60 | 61 | Method (_INI) 62 | { 63 | If (_OSI ("Darwin")) 64 | { 65 | // disable original battery objects by setting invalid _HID 66 | ^^BAT0._HID = 0 67 | ^^BAT1._HID = 0 68 | } 69 | } 70 | 71 | Method (_STA) 72 | { 73 | If (_OSI ("Darwin")) 74 | { 75 | // call original _STA for BAT0 and BAT1 76 | // result is bitwise OR between them 77 | Return (^^BAT0._STA () | ^^BAT1._STA ()) 78 | } 79 | Else 80 | { 81 | Return (Zero) 82 | } 83 | } 84 | 85 | Method (_BIF) 86 | { 87 | // Local0 BAT0._BIF 88 | // Local1 BAT1._BIF 89 | // Local2 BAT0._STA 90 | // Local3 BAT1._STA 91 | // Local4/Local5 scratch 92 | 93 | // gather and validate data from BAT0 94 | Local0 = ^^BAT0._BIF () 95 | Local2 = ^^BAT0._STA () 96 | If (0x1f == Local2) 97 | { 98 | // check for invalid design capacity 99 | Local4 = DerefOf (Local0 [1]) 100 | If (!Local4 || Ones == Local4) { Local2 = 0; } 101 | // check for invalid last full charge capacity 102 | Local4 = DerefOf (Local0 [2]) 103 | If (!Local4 || Ones == Local4) { Local2 = 0; } 104 | // check for invalid design voltage 105 | Local4 = DerefOf (Local0 [4]) 106 | If (!Local4 || Ones == Local4) { Local2 = 0; } 107 | } 108 | // gather and validate data from BAT1 109 | Local1 = ^^BAT1._BIF () 110 | Local3 = ^^BAT1._STA () 111 | If (0x1f == Local3) 112 | { 113 | // check for invalid design capacity 114 | Local4 = DerefOf (Local1 [1]) 115 | If (!Local4 || Ones == Local4) { Local3 = 0; } 116 | // check for invalid last full charge capacity 117 | Local4 = DerefOf (Local1 [2]) 118 | If (!Local4 || Ones == Local4) { Local3 = 0; } 119 | // check for invalid design voltage 120 | Local4 = DerefOf (Local1 [4]) 121 | If (!Local4 || Ones == Local4) { Local3 = 0; } 122 | } 123 | // find primary and secondary battery 124 | If (0x1f != Local2 && 0x1f == Local3) 125 | { 126 | // make primary use BAT1 data 127 | Local0 = Local1 // BAT1._BIF result 128 | Local2 = Local3 // BAT1._STA result 129 | Local3 = 0 // no secondary battery 130 | } 131 | // combine batteries into Local0 result if possible 132 | If (0x1f == Local2 && 0x1f == Local3) 133 | { 134 | // _BIF 0 Power Unit - leave BAT0 value 135 | // _BIF 1 Design Capacity - add BAT0 and BAT1 values 136 | Local4 = DerefOf (Local0 [1]) 137 | Local5 = DerefOf (Local1 [1]) 138 | If (0xffffffff != Local4 && 0xffffffff != Local5) 139 | { 140 | Local0 [1] = Local4 + Local5 141 | } 142 | // _BIF 2 Last Full Charge Capacity - add BAT0 and BAT1 values 143 | Local4 = DerefOf (Local0 [2]) 144 | Local5 = DerefOf (Local1 [2]) 145 | If (0xffffffff != Local4 && 0xffffffff != Local5) 146 | { 147 | Local0 [2] = Local4 + Local5 148 | } 149 | // _BIF 3 Battery Technology - leave BAT0 value 150 | // _BIF 4 Design Voltage - average between BAT0 and BAT1 values 151 | Local4 = DerefOf (Local0 [4]) 152 | Local5 = DerefOf (Local1 [4]) 153 | If (0xffffffff != Local4 && 0xffffffff != Local5) 154 | { 155 | Local0 [4] = (Local4 + Local5) / 2 156 | } 157 | // _BIF 5 Design Capacity of Warning - add BAT0 and BAT1 values 158 | Local0 [5] = DerefOf (Local0 [5]) + DerefOf (Local1 [5]) 159 | // _BIF 6 Design Capacity of Low - add BAT0 and BAT1 values 160 | Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6]) 161 | // _BIF 7 Battery Capacity Granularity 1 - add BAT0 and BAT1 values 162 | Local4 = DerefOf (Local0 [7]) 163 | Local5 = DerefOf (Local1 [7]) 164 | If (0xffffffff != Local4 && 0xffffffff != Local5) 165 | { 166 | Local0 [7] = Local4 + Local5 167 | } 168 | // _BIF 8 Battery Capacity Granularity 2 - add BAT0 and BAT1 values 169 | Local4 = DerefOf (Local0 [8]) 170 | Local5 = DerefOf (Local1 [8]) 171 | If (0xffffffff != Local4 && 0xffffffff != Local5) 172 | { 173 | Local0 [8] = Local4 + Local5 174 | } 175 | // _BIF 9 Model Number - concatenate BAT0 and BAT1 values 176 | Local0 [0x09] = Concatenate (Concatenate (DerefOf (Local0 [0x09]), " / "), DerefOf (Local1 [0x09])) 177 | // _BIF a Serial Number - concatenate BAT0 and BAT1 values 178 | Local0 [0x0a] = Concatenate (Concatenate (DerefOf (Local0 [0x0a]), " / "), DerefOf (Local1 [0x0a])) 179 | // _BIF b Battery Type - concatenate BAT0 and BAT1 values 180 | Local0 [0x0b] = Concatenate (Concatenate (DerefOf (Local0 [0x0b]), " / "), DerefOf (Local1 [0x0b])) 181 | // _BIF c OEM Information - concatenate BAT0 and BAT1 values 182 | Local0 [0x0c] = Concatenate (Concatenate (DerefOf (Local0 [0x0c]), " / "), DerefOf (Local1 [0x0c])) 183 | } 184 | 185 | Return (Local0) 186 | } // _BIF 187 | 188 | Method (_BIX) 189 | { 190 | // Local0 BAT0._BIX 191 | // Local1 BAT1._BIX 192 | // Local2 BAT0._STA 193 | // Local3 BAT1._STA 194 | // Local4/Local5 scratch 195 | 196 | // gather and validate data from BAT0 197 | Local0 = ^^BAT0._BIX () 198 | Local2 = ^^BAT0._STA () 199 | If (0x1f == Local2) 200 | { 201 | // check for invalid design capacity 202 | Local4 = DerefOf (Local0 [2]) 203 | If (!Local4 || Ones == Local4) { Local2 = 0; } 204 | // check for invalid last full charge capacity 205 | Local4 = DerefOf (Local0 [3]) 206 | If (!Local4 || Ones == Local4) { Local2 = 0; } 207 | // check for invalid design voltage 208 | Local4 = DerefOf (Local0 [5]) 209 | If (!Local4 || Ones == Local4) { Local2 = 0; } 210 | } 211 | // gather and validate data from BAT1 212 | Local1 = ^^BAT1._BIX () 213 | Local3 = ^^BAT1._STA () 214 | If (0x1f == Local3) 215 | { 216 | // check for invalid design capacity 217 | Local4 = DerefOf (Local1 [2]) 218 | If (!Local4 || Ones == Local4) { Local3 = 0; } 219 | // check for invalid last full charge capacity 220 | Local4 = DerefOf (Local1 [3]) 221 | If (!Local4 || Ones == Local4) { Local3 = 0; } 222 | // check for invalid design voltage 223 | Local4 = DerefOf (Local1 [5]) 224 | If (!Local4 || Ones == Local4) { Local3 = 0; } 225 | } 226 | // find primary and secondary battery 227 | If (0x1f != Local2 && 0x1f == Local3) 228 | { 229 | // make primary use BAT1 data 230 | Local0 = Local1 // BAT1._BIX result 231 | Local2 = Local3 // BAT1._STA result 232 | Local3 = 0 // no secondary battery 233 | } 234 | // combine batteries into Local0 result if possible 235 | If (0x1f == Local2 && 0x1f == Local3) 236 | { 237 | // _BIX 0 Revision - leave BAT0 value 238 | // _BIX 1 Power Unit - leave BAT0 value 239 | // _BIX 2 Design Capacity - add BAT0 and BAT1 values 240 | Local4 = DerefOf (Local0 [2]) 241 | Local5 = DerefOf (Local1 [2]) 242 | If (0xffffffff != Local4 && 0xffffffff != Local5) 243 | { 244 | Local0 [2] = Local4 + Local5 245 | } 246 | // _BIX 3 Last Full Charge Capacity - add BAT0 and BAT1 values 247 | Local4 = DerefOf (Local0 [3]) 248 | Local5 = DerefOf (Local1 [3]) 249 | If (0xffffffff != Local4 && 0xffffffff != Local5) 250 | { 251 | Local0 [3] = Local4 + Local5 252 | } 253 | // _BIX 4 Battery Technology - leave BAT0 value 254 | // _BIX 5 Design Voltage - average between BAT0 and BAT1 values 255 | Local4 = DerefOf (Local0 [5]) 256 | Local5 = DerefOf (Local1 [5]) 257 | If (0xffffffff != Local4 && 0xffffffff != Local5) 258 | { 259 | Local0 [5] = (Local4 + Local5) / 2 260 | } 261 | // _BIX 6 Design Capacity of Warning - add BAT0 and BAT1 values 262 | Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6]) 263 | // _BIX 7 Design Capacity of Low - add BAT0 and BAT1 values 264 | Local0 [7] = DerefOf (Local0 [7]) + DerefOf (Local1 [7]) 265 | // _BIX 8 Cycle Count - average between BAT0 and BAT1 values 266 | Local4 = DerefOf (Local0 [8]) 267 | Local5 = DerefOf (Local1 [8]) 268 | If (0xffffffff != Local4 && 0xffffffff != Local5) 269 | { 270 | Local0 [8] = (Local4 + Local5) / 2 271 | } 272 | // _BIX 9 Measurement Accuracy - average between BAT0 and BAT1 values 273 | Local0 [9] = (DerefOf (Local0 [9]) + DerefOf (Local1 [9])) / 2 274 | // _BIX 0xa Max Sampling Time - average between BAT0 and BAT1 values 275 | Local4 = DerefOf (Local0 [0xa]) 276 | Local5 = DerefOf (Local1 [0xa]) 277 | If (0xffffffff != Local4 && 0xffffffff != Local5) 278 | { 279 | Local0 [0xa] = (Local4 + Local5) / 2 280 | } 281 | // _BIX 0xb Min Sampling Time - average between BAT0 and BAT1 values 282 | Local4 = DerefOf (Local0 [0xb]) 283 | Local5 = DerefOf (Local1 [0xb]) 284 | If (0xffffffff != Local4 && 0xffffffff != Local5) 285 | { 286 | Local0 [0xb] = (Local4 + Local5) / 2 287 | } 288 | // _BIX 0xc Max Averaging Interval - average between BAT0 and BAT1 values 289 | Local0 [0xc] = (DerefOf (Local0 [0xc]) + DerefOf (Local1 [0xc])) / 2 290 | // _BIX 0xd Min Averaging Interval - average between BAT0 and BAT1 values 291 | Local0 [0xd] = (DerefOf (Local0 [0xd]) + DerefOf (Local1 [0xd])) / 2 292 | // _BIX 0xe Battery Capacity Granularity 1 - add BAT0 and BAT1 values 293 | Local4 = DerefOf (Local0 [0xe]) 294 | Local5 = DerefOf (Local1 [0xe]) 295 | If (0xffffffff != Local4 && 0xffffffff != Local5) 296 | { 297 | Local0 [0xe] = Local4 + Local5 298 | } 299 | // _BIX 0xf Battery Capacity Granularity 2 - add BAT0 and BAT1 values 300 | Local4 = DerefOf (Local0 [0xf]) 301 | Local5 = DerefOf (Local1 [0xf]) 302 | If (0xffffffff != Local4 && 0xffffffff != Local5) 303 | { 304 | Local0 [0xf] = Local4 + Local5 305 | } 306 | // _BIX 10 Model Number - concatenate BAT0 and BAT1 values 307 | Local0 [0x10] = Concatenate (Concatenate (DerefOf (Local0 [0x10]), " / "), DerefOf (Local1 [0x10])) 308 | // _BIX 11 Serial Number - concatenate BAT0 and BAT1 values 309 | Local0 [0x11] = Concatenate (Concatenate (DerefOf (Local0 [0x11]), " / "), DerefOf (Local1 [0x11])) 310 | // _BIX 12 Battery Type - concatenate BAT0 and BAT1 values 311 | Local0 [0x12] = Concatenate (Concatenate (DerefOf (Local0 [0x12]), " / "), DerefOf (Local1 [0x12])) 312 | // _BIX 13 OEM Information - concatenate BAT0 and BAT1 values 313 | Local0 [0x13] = Concatenate (Concatenate (DerefOf (Local0 [0x13]), " / "), DerefOf (Local1 [0x13])) 314 | // _BIX 14 Battery Swapping Capability - leave BAT0 value for now 315 | } 316 | Return (Local0) 317 | } // _BIX 318 | 319 | Method (_BST) 320 | { 321 | // Local0 BAT0._BST 322 | // Local1 BAT1._BST 323 | // Local2 BAT0._STA 324 | // Local3 BAT1._STA 325 | // Local4/Local5 scratch 326 | 327 | // gather battery data from BAT0 328 | Local0 = ^^BAT0._BST () 329 | Local2 = ^^BAT0._STA () 330 | If (0x1f == Local2) 331 | { 332 | // check for invalid remaining capacity 333 | Local4 = DerefOf (Local0 [2]) 334 | If (!Local4 || Ones == Local4) { Local2 = 0; } 335 | } 336 | // gather battery data from BAT1 337 | Local1 = ^^BAT1._BST () 338 | Local3 = ^^BAT1._STA () 339 | If (0x1f == Local3) 340 | { 341 | // check for invalid remaining capacity 342 | Local4 = DerefOf (Local1 [2]) 343 | If (!Local4 || Ones == Local4) { Local3 = 0; } 344 | } 345 | // find primary and secondary battery 346 | If (0x1f != Local2 && 0x1f == Local3) 347 | { 348 | // make primary use BAT1 data 349 | Local0 = Local1 // BAT1._BST result 350 | Local2 = Local3 // BAT1._STA result 351 | Local3 = 0 // no secondary battery 352 | } 353 | // combine batteries into Local0 result if possible 354 | If (0x1f == Local2 && 0x1f == Local3) 355 | { 356 | // _BST 0 - Battery State - if one battery is charging, then charging, else discharging 357 | Local4 = DerefOf (Local0 [0]) 358 | Local5 = DerefOf (Local1 [0]) 359 | If (Local4 != Local5) 360 | { 361 | If (Local4 == 2 || Local5 == 2) 362 | { 363 | // 2 = charging 364 | Local0 [0] = 2 365 | } 366 | ElseIf (Local4 == 1 || Local5 == 1) 367 | { 368 | // 1 = discharging 369 | Local0 [0] = 1 370 | } 371 | ElseIf (Local4 == 3 || Local5 == 3) 372 | { 373 | Local0 [0] = 3 374 | } 375 | ElseIf (Local4 == 4 || Local5 == 4) 376 | { 377 | // critical 378 | Local0 [0] = 4 379 | } 380 | ElseIf (Local4 == 5 || Local5 == 5) 381 | { 382 | // critical and discharging 383 | Local0 [0] = 5 384 | } 385 | // if none of the above, just leave as BAT0 is 386 | } 387 | 388 | // _BST 1 - Battery Present Rate - add BAT0 and BAT1 values 389 | Local0 [1] = DerefOf (Local0 [1]) + DerefOf (Local1 [1]) 390 | // _BST 2 - Battery Remaining Capacity - add BAT0 and BAT1 values 391 | Local0 [2] = DerefOf (Local0 [2]) + DerefOf (Local1 [2]) 392 | // _BST 3 - Battery Present Voltage - average between BAT0 and BAT1 values 393 | Local0 [3] = (DerefOf (Local0 [3]) + DerefOf (Local1 [3])) / 2 394 | } 395 | Return (Local0) 396 | } // _BST 397 | } // BATC 398 | } // Scope (...) 399 | } 400 | //EOF 401 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCDellSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCDellSensors 11 | CFBundleIdentifier 12 | as.lvs1974.SMCDellSensors 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCDellSensors 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E708 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1160 39 | DTXcodeBuild 40 | 11E708 41 | IOKitPersonalities 42 | 43 | SMCDellSensors 44 | 45 | CFBundleIdentifier 46 | as.lvs1974.SMCDellSensors 47 | FanMultiplier 48 | 1 49 | FanNames 50 | 51 | CPU Fan 52 | System Fan 53 | GPU Fan 54 | PSU Fan 55 | Chipset Fan 56 | Other Fan 57 | 58 | IOClass 59 | SMCDellSensors 60 | IOMatchCategory 61 | SMCDellSensors 62 | IOProviderClass 63 | IOResources 64 | IOResourceMatch 65 | IOKit 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 usrsse2. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.kpi.bsd 81 | 11.0.0 82 | com.apple.kpi.dsep 83 | 11.0.0 84 | com.apple.kpi.iokit 85 | 11.0.0 86 | com.apple.kpi.libkern 87 | 11.0.0 88 | com.apple.kpi.mach 89 | 11.0.0 90 | com.apple.kpi.unsupported 91 | 11.0.0 92 | 93 | OSBundleRequired 94 | Root 95 | 96 | 97 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCLightSensor 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCLightSensor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCLightSensor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E708 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1160 39 | DTXcodeBuild 40 | 11E708 41 | IOKitPersonalities 42 | 43 | SMCLightSensor 44 | 45 | CFBundleIdentifier 46 | ru.usrsse2.SMCLightSensor 47 | IOClass 48 | SMCLightSensor 49 | IOMatchCategory 50 | SMCLightSensor 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.6 59 | NSHumanReadableCopyright 60 | Copyright © 2018 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.0.0 63 | OSBundleLibraries 64 | 65 | as.vit9696.Lilu 66 | 1.2.0 67 | as.vit9696.VirtualSMC 68 | 1.0.0 69 | com.apple.iokit.IOACPIFamily 70 | 1.0.0d1 71 | com.apple.kpi.bsd 72 | 10.0.0 73 | com.apple.kpi.dsep 74 | 10.0.0 75 | com.apple.kpi.iokit 76 | 10.0.0 77 | com.apple.kpi.libkern 78 | 10.0.0 79 | com.apple.kpi.mach 80 | 10.0.0 81 | com.apple.kpi.unsupported 82 | 10.0.0 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | as.vit9696.SMCProcessor 46 | 47 | CFBundleIdentifier 48 | as.vit9696.SMCProcessor 49 | IOClass 50 | SMCProcessor 51 | IOMatchCategory 52 | SMCProcessor 53 | IONameMatch 54 | processor 55 | IOPropertyMatch 56 | 57 | processor-index 58 | 0 59 | 60 | IOProviderClass 61 | IOACPIPlatformDevice 62 | IOResourceMatch 63 | ACPI 64 | 65 | 66 | LSMinimumSystemVersion 67 | 10.7 68 | NSHumanReadableCopyright 69 | Copyright © 2018 vit9696. All rights reserved. 70 | OSBundleCompatibleVersion 71 | 1.0 72 | OSBundleLibraries 73 | 74 | as.vit9696.Lilu 75 | 1.2.0 76 | as.vit9696.VirtualSMC 77 | 1.0.0 78 | com.apple.iokit.IOACPIFamily 79 | 1.0.0d1 80 | com.apple.kpi.bsd 81 | 11.0.0 82 | com.apple.kpi.dsep 83 | 11.0.0 84 | com.apple.kpi.iokit 85 | 11.0.0 86 | com.apple.kpi.libkern 87 | 11.0.0 88 | com.apple.kpi.mach 89 | 11.0.0 90 | com.apple.kpi.unsupported 91 | 11.0.0 92 | 93 | OSBundleRequired 94 | Root 95 | 96 | 97 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | ru.joedm.SMCSuperIO 46 | 47 | CFBundleIdentifier 48 | ru.joedm.SMCSuperIO 49 | IOClass 50 | SMCSuperIO 51 | IOMatchCategory 52 | SMCSuperIO 53 | IOPCIClassMatch 54 | 0x06010000&0xffff0000 55 | IOProviderClass 56 | IOPCIDevice 57 | IOResourceMatch 58 | ACPI 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2018 joedm. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.0 67 | OSBundleLibraries 68 | 69 | as.vit9696.Lilu 70 | 1.2.0 71 | as.vit9696.VirtualSMC 72 | 1.0.0 73 | com.apple.iokit.IOACPIFamily 74 | 1.0.0d1 75 | com.apple.kpi.bsd 76 | 10.0.0 77 | com.apple.kpi.dsep 78 | 10.0.0 79 | com.apple.kpi.iokit 80 | 10.0.0 81 | com.apple.kpi.libkern 82 | 10.0.0 83 | com.apple.kpi.mach 84 | 10.0.0 85 | com.apple.kpi.unsupported 86 | 10.0.0 87 | 88 | OSBundleRequired 89 | Root 90 | 91 | 92 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/Sinetek-rtsx.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E287 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Sinetek-rtsx 11 | CFBundleIdentifier 12 | com.sinet3k.Sinetek-rtsx 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Sinetek-rtsx 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E608c 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 17A315g 35 | DTSDKName 36 | macosx10.13 37 | DTXcode 38 | 1150 39 | DTXcodeBuild 40 | 11E608c 41 | IOKitPersonalities 42 | 43 | Sinetek_rtsx 44 | 45 | CFBundleIdentifier 46 | com.sinet3k.Sinetek-rtsx 47 | IOClass 48 | Sinetek_rtsx 49 | IOKitDebug 50 | 65535 51 | IOPCIMatch 52 | 0x520910EC 0x522710EC 0x522910EC 0x522A10EC 0x524910EC 0x528610EC 0x528710EC 0x528910EC 0x525A10EC 53 | IOProbeScore 54 | 1000 55 | IOProviderClass 56 | IOPCIDevice 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.13 61 | NSHumanReadableCopyright 62 | Copyright © 2017 sinetek (modified by cholonam). All rights reserved. 63 | OSBundleLibraries 64 | 65 | com.apple.iokit.IOPCIFamily 66 | 2.9 67 | com.apple.iokit.IOStorageFamily 68 | 2.1 69 | com.apple.kpi.bsd 70 | 16.4 71 | com.apple.kpi.iokit 72 | 16.4 73 | com.apple.kpi.libkern 74 | 16.4 75 | com.apple.kpi.mach 76 | 16.4 77 | com.apple.kpi.unsupported 78 | 8.0 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/Sinetek-rtsx.kext/Contents/MacOS/Sinetek-rtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/Sinetek-rtsx.kext/Contents/MacOS/Sinetek-rtsx -------------------------------------------------------------------------------- /EFI/OC/Kexts/Sinetek-rtsx.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/USBMap.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | v1.0 9 | CFBundleIdentifier 10 | com.dortania.USBmap 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBMap 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | 8086 - 15ec 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBHostMergeProperties 29 | IOClass 30 | AppleUSBHostMergeProperties 31 | IOPathMatch 32 | IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP01@1C/IOPP/PXSX@0/IOPP/pci-bridge@2/IOPP/pci8086,15ec@0/AppleUSBXHCITR@00000000 33 | IOProviderClass 34 | AppleUSBXHCIPCI 35 | IOProviderMergeProperties 36 | 37 | port-count 38 | BAAAAA== 39 | ports 40 | 41 | SS01 42 | 43 | UsbConnector 44 | 10 45 | port 46 | BAAAAA== 47 | 48 | SS02 49 | 50 | UsbConnector 51 | 10 52 | port 53 | AwAAAA== 54 | 55 | 56 | 57 | model 58 | MacBookPro16,4 59 | 60 | 8086 - 6ed XHC14 61 | 62 | CFBundleIdentifier 63 | com.apple.driver.AppleUSBHostMergeProperties 64 | IOClass 65 | AppleUSBHostMergeProperties 66 | IOPathMatch 67 | IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/XHC@14/XHC@14000000 68 | IOProviderClass 69 | AppleUSBXHCIPCI 70 | IOProviderMergeProperties 71 | 72 | port-count 73 | EQAAAA== 74 | ports 75 | 76 | HS01 77 | 78 | UsbConnector 79 | 10 80 | port 81 | BQAAAA== 82 | 83 | HS02 84 | 85 | UsbConnector 86 | 10 87 | port 88 | BAAAAA== 89 | 90 | HS03 91 | 92 | UsbConnector 93 | 10 94 | port 95 | AwAAAA== 96 | 97 | HS07 98 | 99 | UsbConnector 100 | 255 101 | port 102 | DgAAAA== 103 | 104 | HS08 105 | 106 | UsbConnector 107 | 255 108 | port 109 | CwAAAA== 110 | 111 | SS03 112 | 113 | UsbConnector 114 | 10 115 | port 116 | EQAAAA== 117 | 118 | 119 | 120 | model 121 | MacBookPro16,4 122 | 123 | 124 | OSBundleRequired 125 | Root 126 | 127 | 128 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VirtualSMC 11 | CFBundleIdentifier 12 | as.vit9696.VirtualSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VirtualSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | as.vit9696.VirtualSMC 46 | 47 | CFBundleIdentifier 48 | as.vit9696.VirtualSMC 49 | IOClass 50 | VirtualSMC 51 | IODeviceMemory 52 | 53 | 54 | 55 | address 56 | 768 57 | length 58 | 32 59 | 60 | 61 | 62 | 63 | address 64 | 4277141504 65 | length 66 | 65536 67 | 68 | 69 | 70 | IOInterruptControllers 71 | 72 | io-apic-0 73 | 74 | IOInterruptSpecifiers 75 | 76 | 77 | BgAAAAAAAAA= 78 | 79 | 80 | IOMatchCategory 81 | IOACPIPlatformDevice 82 | IOName 83 | SMC 84 | IOProbeScore 85 | 60000 86 | IOProviderClass 87 | AppleACPIPlatformExpert 88 | Keystore 89 | 90 | Generic 91 | 92 | 93 | attr 94 | 95 | iA== 96 | 97 | comment 98 | Total fan number, this should be put to a plugin 99 | name 100 | 101 | Rk51bQ== 102 | 103 | type 104 | 105 | dWk4IA== 106 | 107 | value 108 | 109 | AA== 110 | 111 | 112 | 113 | attr 114 | 115 | gA== 116 | 117 | comment 118 | CPU plimit 119 | name 120 | 121 | TVNUYw== 122 | 123 | type 124 | 125 | dWk4IA== 126 | 127 | value 128 | 129 | AA== 130 | 131 | 132 | 133 | attr 134 | 135 | gA== 136 | 137 | comment 138 | FAN plimit (supposedly) 139 | name 140 | 141 | TVNUZg== 142 | 143 | type 144 | 145 | dWk4IA== 146 | 147 | value 148 | 149 | AA== 150 | 151 | 152 | 153 | attr 154 | 155 | gA== 156 | 157 | comment 158 | Memory plimit 159 | name 160 | 161 | TVNUbQ== 162 | 163 | type 164 | 165 | dWk4IA== 166 | 167 | value 168 | 169 | AA== 170 | 171 | 172 | 173 | attr 174 | 175 | gA== 176 | 177 | comment 178 | This should be 1 on laptops, and is overriden by sensors 179 | name 180 | 181 | QkFUUA== 182 | 183 | type 184 | 185 | ZmxhZw== 186 | 187 | value 188 | 189 | AA== 190 | 191 | 192 | 193 | attr 194 | 195 | gA== 196 | 197 | comment 198 | Only MacPros have custom illumination controllers 199 | name 200 | 201 | THNOTQ== 202 | 203 | type 204 | 205 | dWk4IA== 206 | 207 | value 208 | 209 | AA== 210 | 211 | 212 | 213 | GenericDesktopV1 214 | 215 | GenericDesktopV2 216 | 217 | GenericLaptopV1 218 | 219 | GenericLaptopV2 220 | 221 | GenericV1 222 | 223 | 224 | attr 225 | 226 | gA== 227 | 228 | comment 229 | GPU plimit 230 | name 231 | 232 | TVNUZw== 233 | 234 | type 235 | 236 | dWk4IA== 237 | 238 | value 239 | 240 | AA== 241 | 242 | 243 | 244 | GenericV2 245 | 246 | 247 | attr 248 | 249 | gA== 250 | 251 | comment 252 | E plimit (???) 253 | name 254 | 255 | TVNUZQ== 256 | 257 | type 258 | 259 | dWk4IA== 260 | 261 | value 262 | 263 | AA== 264 | 265 | 266 | 267 | attr 268 | 269 | gA== 270 | 271 | comment 272 | I plimit (???) 273 | name 274 | 275 | TVNUaQ== 276 | 277 | type 278 | 279 | dWk4IA== 280 | 281 | value 282 | 283 | AA== 284 | 285 | 286 | 287 | attr 288 | 289 | gA== 290 | 291 | comment 292 | J plimit (???) 293 | name 294 | 295 | TVNUag== 296 | 297 | type 298 | 299 | dWk4IA== 300 | 301 | value 302 | 303 | AA== 304 | 305 | 306 | 307 | 308 | ModelInfo 309 | 310 | GenericV1 311 | 312 | branch 313 | 314 | ajUyAAAAAAA= 315 | 316 | hwname 317 | 318 | c21jLXBpa2V0b24A 319 | 320 | platform 321 | 322 | ajUyAAAAAAA= 323 | 324 | rev 325 | 326 | AXQPAAAE 327 | 328 | revfb 329 | 330 | AXQPAAAE 331 | 332 | revfu 333 | 334 | AXQPAAAE 335 | 336 | 337 | GenericV2 338 | 339 | branch 340 | 341 | ajUyAAAAAAA= 342 | 343 | hwname 344 | 345 | c21jLWh1cm9ucml2ZXIA 346 | 347 | platform 348 | 349 | ajUyAAAAAAA= 350 | 351 | rev 352 | 353 | AigPAAAH 354 | 355 | revfb 356 | 357 | AigPAAAH 358 | 359 | revfu 360 | 361 | AigPAAAH 362 | 363 | 364 | GenericV3 365 | 366 | hwname 367 | 368 | c21jLWh1cm9ucml2ZXIA 369 | 370 | platform 371 | 372 | ajUyAAAAAAA= 373 | 374 | 375 | 376 | _STA 377 | 11 378 | name 379 | 380 | QVBQMDAwMQA= 381 | 382 | 383 | 384 | LSMinimumSystemVersion 385 | 10.6 386 | NSHumanReadableCopyright 387 | Copyright © 2017 vit9696. All rights reserved. 388 | OSBundleCompatibleVersion 389 | 1.0 390 | OSBundleLibraries 391 | 392 | as.vit9696.Lilu 393 | 1.2.0 394 | com.apple.iokit.IOACPIFamily 395 | 1.0.0d1 396 | com.apple.kpi.bsd 397 | 10.0.0 398 | com.apple.kpi.dsep 399 | 10.0.0 400 | com.apple.kpi.iokit 401 | 10.0.0 402 | com.apple.kpi.libkern 403 | 10.0.0 404 | com.apple.kpi.mach 405 | 10.0.0 406 | com.apple.kpi.unsupported 407 | 10.0.0 408 | 409 | OSBundleRequired 410 | Root 411 | 412 | 413 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoltageShift.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19G2021 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | VoltageShift 11 | CFBundleGetInfoString 12 | VoltageShift 1.22, copyright © 2019 SC Lee. All rights reserved. 13 | CFBundleIdentifier 14 | com.sicreative.VoltageShift 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | VoltageShift 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 1.21 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1.21 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 12A7209 35 | DTPlatformName 36 | macosx 37 | DTPlatformVersion 38 | 10.15.6 39 | DTSDKBuild 40 | 19G68 41 | DTSDKName 42 | macosx10.15 43 | DTXcode 44 | 1200 45 | DTXcodeBuild 46 | 12A7209 47 | IOKitPersonalities 48 | 49 | VoltageShiftAnVMSR 50 | 51 | IOClass 52 | VoltageShiftAnVMSR 53 | IOMatchCategory 54 | VoltageShiftAnVMSR 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | IOUserClientClass 60 | AnVMSRClient 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.15 65 | NSHumanReadableCopyright 66 | Copyright © 2019 SC Lee. All rights reserved. 67 | OSBundleLibraries 68 | 69 | com.apple.kpi.iokit 70 | 8.0.0b1 71 | com.apple.kpi.libkern 72 | 8.0.0b1 73 | 74 | OSBundleRequired 75 | Root 76 | 77 | 78 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoltageShift.kext/Contents/MacOS/VoltageShift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoltageShift.kext/Contents/MacOS/VoltageShift -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoltageShift.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoltageShift.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoltageShift.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/en.lproj/InfoPlist.strings 8 | 9 | hash 10 | 11 | MiLKDDnrUKr4EmuvhS5VQwxHGK8= 12 | 13 | optional 14 | 15 | 16 | 17 | files2 18 | 19 | Resources/en.lproj/InfoPlist.strings 20 | 21 | hash 22 | 23 | MiLKDDnrUKr4EmuvhS5VQwxHGK8= 24 | 25 | hash2 26 | 27 | Oc8u4Ht7Mz58F50L9NeYpbcq9qTlhPUeZCcDu/pPyCg= 28 | 29 | optional 30 | 31 | 32 | 33 | rules 34 | 35 | ^Resources/ 36 | 37 | ^Resources/.*\.lproj/ 38 | 39 | optional 40 | 41 | weight 42 | 1000 43 | 44 | ^Resources/.*\.lproj/locversion.plist$ 45 | 46 | omit 47 | 48 | weight 49 | 1100 50 | 51 | ^Resources/Base\.lproj/ 52 | 53 | weight 54 | 1010 55 | 56 | ^version.plist$ 57 | 58 | 59 | rules2 60 | 61 | .*\.dSYM($|/) 62 | 63 | weight 64 | 11 65 | 66 | ^(.*/)?\.DS_Store$ 67 | 68 | omit 69 | 70 | weight 71 | 2000 72 | 73 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 74 | 75 | nested 76 | 77 | weight 78 | 10 79 | 80 | ^.* 81 | 82 | ^Info\.plist$ 83 | 84 | omit 85 | 86 | weight 87 | 20 88 | 89 | ^PkgInfo$ 90 | 91 | omit 92 | 93 | weight 94 | 20 95 | 96 | ^Resources/ 97 | 98 | weight 99 | 20 100 | 101 | ^Resources/.*\.lproj/ 102 | 103 | optional 104 | 105 | weight 106 | 1000 107 | 108 | ^Resources/.*\.lproj/locversion.plist$ 109 | 110 | omit 111 | 112 | weight 113 | 1100 114 | 115 | ^Resources/Base\.lproj/ 116 | 117 | weight 118 | 1010 119 | 120 | ^[^/]+$ 121 | 122 | nested 123 | 124 | weight 125 | 10 126 | 127 | ^embedded\.provisionprofile$ 128 | 129 | weight 130 | 20 131 | 132 | ^version\.plist$ 133 | 134 | weight 135 | 20 136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2C 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2C 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2C 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.4.4 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.4.4 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 41 | IOKitPersonalities 42 | 43 | Custom MT2 Personality 44 | 45 | ApplePreferenceCapability 46 | 2 47 | ApplePreferenceIdentifier 48 | com.apple.AppleMultitouchTrackpad 49 | ApplePreferencesDefaultPreferences 50 | 51 | ActuateDetents 52 | 0 53 | Clicking 54 | 1 55 | DragLock 56 | 0 57 | Dragging 58 | 0 59 | FirstClickThreshold 60 | 1 61 | ForceSuppressed 62 | 63 | SecondClickThreshold 64 | 1 65 | TrackpadCornerSecondaryClick 66 | 0 67 | TrackpadFiveFingerPinchGesture 68 | 2 69 | TrackpadFourFingerHorizSwipeGesture 70 | 2 71 | TrackpadFourFingerPinchGesture 72 | 2 73 | TrackpadFourFingerVertSwipeGesture 74 | 2 75 | TrackpadHorizScroll 76 | 1 77 | TrackpadMomentumScroll 78 | 79 | TrackpadPinch 80 | 1 81 | TrackpadRightClick 82 | 83 | TrackpadRotate 84 | 1 85 | TrackpadScroll 86 | 87 | TrackpadThreeFingerDrag 88 | 89 | TrackpadThreeFingerHorizSwipeGesture 90 | 2 91 | TrackpadThreeFingerVertSwipeGesture 92 | 2 93 | 94 | CFBundleIdentifier 95 | com.apple.driver.AppleTopCaseHIDEventDriver 96 | DefaultMultitouchProperties 97 | 98 | ActuationSupported 99 | 100 | ExtractAndPostDeviceButtonState 101 | 102 | ForceSupported 103 | 104 | HIDServiceSupport 105 | 106 | IOCFPlugInTypes 107 | 108 | 0516B563-B15B-11DA-96EB-0014519758EF 109 | AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin 110 | 111 | MT Built-In 112 | 113 | MTHIDDevice 114 | 115 | MTPowerStatsDisable 116 | 117 | SupportsGestureScrolling 118 | 119 | TrackpadFourFingerGestures 120 | 121 | TrackpadMomentumScroll 122 | 123 | TrackpadSecondaryClickCorners 124 | 125 | TrackpadThreeFingerDrag 126 | 127 | parser-options 128 | 39 129 | parser-type 130 | 1000 131 | 132 | DeviceUsagePairs 133 | 134 | 135 | DeviceUsage 136 | 2 137 | DeviceUsagePage 138 | 1 139 | 140 | 141 | DoReportIntervalHack 142 | 143 | HIDAccelCurves 144 | 145 | 146 | HIDAccelGainLinear 147 | 65536 148 | HIDAccelIndex 149 | 0 150 | HIDAccelTangentSpeedLinear 151 | 484966 152 | HIDAccelTangentSpeedParabolicRoot 153 | 1376256 154 | 155 | 156 | HIDAccelGainCubic 157 | 5243 158 | HIDAccelGainLinear 159 | 64881 160 | HIDAccelGainParabolic 161 | 32768 162 | HIDAccelIndex 163 | 8192 164 | HIDAccelTangentSpeedLinear 165 | 478413 166 | HIDAccelTangentSpeedParabolicRoot 167 | 1310720 168 | 169 | 170 | HIDAccelGainCubic 171 | 6554 172 | HIDAccelGainLinear 173 | 64225 174 | HIDAccelGainParabolic 175 | 43254 176 | HIDAccelIndex 177 | 32768 178 | HIDAccelTangentSpeedLinear 179 | 471859 180 | HIDAccelTangentSpeedParabolicRoot 181 | 1245184 182 | 183 | 184 | HIDAccelGainCubic 185 | 7864 186 | HIDAccelGainLinear 187 | 62915 188 | HIDAccelGainParabolic 189 | 54395 190 | HIDAccelIndex 191 | 45056 192 | HIDAccelTangentSpeedLinear 193 | 465306 194 | HIDAccelTangentSpeedParabolicRoot 195 | 1179648 196 | 197 | 198 | HIDAccelGainCubic 199 | 9830 200 | HIDAccelGainLinear 201 | 61604 202 | HIDAccelGainParabolic 203 | 65536 204 | HIDAccelIndex 205 | 57344 206 | HIDAccelTangentSpeedLinear 207 | 458752 208 | HIDAccelTangentSpeedParabolicRoot 209 | 1114112 210 | 211 | 212 | HIDAccelGainCubic 213 | 11796 214 | HIDAccelGainLinear 215 | 60293 216 | HIDAccelGainParabolic 217 | 75366 218 | HIDAccelIndex 219 | 65536 220 | HIDAccelTangentSpeedLinear 221 | 458752 222 | HIDAccelTangentSpeedParabolicRoot 223 | 1048576 224 | 225 | 226 | HIDAccelGainCubic 227 | 13763 228 | HIDAccelGainLinear 229 | 58327 230 | HIDAccelGainParabolic 231 | 85197 232 | HIDAccelIndex 233 | 98304 234 | HIDAccelTangentSpeedLinear 235 | 458752 236 | HIDAccelTangentSpeedParabolicRoot 237 | 983040 238 | 239 | 240 | HIDAccelGainCubic 241 | 15729 242 | HIDAccelGainLinear 243 | 56361 244 | HIDAccelGainParabolic 245 | 95027 246 | HIDAccelIndex 247 | 131072 248 | HIDAccelTangentSpeedLinear 249 | 458752 250 | HIDAccelTangentSpeedParabolicRoot 251 | 917504 252 | 253 | 254 | HIDAccelGainCubic 255 | 18350 256 | HIDAccelGainLinear 257 | 54395 258 | HIDAccelGainParabolic 259 | 108790 260 | HIDAccelIndex 261 | 163840 262 | HIDAccelTangentSpeedLinear 263 | 458752 264 | HIDAccelTangentSpeedParabolicRoot 265 | 851968 266 | 267 | 268 | HIDAccelGainCubic 269 | 23593 270 | HIDAccelGainLinear 271 | 65536 272 | HIDAccelGainParabolic 273 | 123208 274 | HIDAccelIndex 275 | 196608 276 | HIDAccelTangentSpeedLinear 277 | 458752 278 | HIDAccelTangentSpeedParabolicRoot 279 | 786432 280 | 281 | 282 | HIDDisallowRemappingOfPrimaryClick 283 | 284 | HIDPointerAccelerationTable 285 | 286 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 287 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 288 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 289 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 290 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 291 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 292 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 293 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 294 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 295 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 296 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 297 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 298 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 299 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 300 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 301 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 302 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 303 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 304 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 305 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxA 306 | 307 | HIDPointerAccelerationType 308 | HIDTrackpadAcceleration 309 | HIDScrollAccelCurves 310 | 311 | 312 | HIDAccelGainLinear 313 | 65536 314 | HIDAccelIndex 315 | 0 316 | HIDAccelTangentSpeedLinear 317 | 393216 318 | HIDAccelTangentSpeedParabolicRoot 319 | 786432 320 | 321 | 322 | HIDAccelGainLinear 323 | 62259 324 | HIDAccelGainParabolic 325 | 39322 326 | HIDAccelIndex 327 | 8192 328 | HIDAccelTangentSpeedLinear 329 | 406323 330 | HIDAccelTangentSpeedParabolicRoot 331 | 786432 332 | 333 | 334 | HIDAccelGainLinear 335 | 58982 336 | HIDAccelGainParabolic 337 | 58982 338 | HIDAccelIndex 339 | 32768 340 | HIDAccelTangentSpeedLinear 341 | 419430 342 | HIDAccelTangentSpeedParabolicRoot 343 | 786432 344 | 345 | 346 | HIDAccelGainLinear 347 | 55706 348 | HIDAccelGainParabolic 349 | 78643 350 | HIDAccelIndex 351 | 45056 352 | HIDAccelTangentSpeedLinear 353 | 432538 354 | HIDAccelTangentSpeedParabolicRoot 355 | 786432 356 | 357 | 358 | HIDAccelGainLinear 359 | 52429 360 | HIDAccelGainParabolic 361 | 91750 362 | HIDAccelIndex 363 | 57344 364 | HIDAccelTangentSpeedLinear 365 | 445645 366 | HIDAccelTangentSpeedParabolicRoot 367 | 786432 368 | 369 | 370 | HIDAccelGainLinear 371 | 49152 372 | HIDAccelGainParabolic 373 | 104858 374 | HIDAccelIndex 375 | 65536 376 | HIDAccelTangentSpeedLinear 377 | 458752 378 | HIDAccelTangentSpeedParabolicRoot 379 | 786432 380 | 381 | 382 | HIDAccelGainLinear 383 | 45875 384 | HIDAccelGainParabolic 385 | 117965 386 | HIDAccelIndex 387 | 98304 388 | HIDAccelTangentSpeedLinear 389 | 471859 390 | HIDAccelTangentSpeedParabolicRoot 391 | 786432 392 | 393 | 394 | HIDAccelGainLinear 395 | 42598 396 | HIDAccelGainParabolic 397 | 131072 398 | HIDAccelIndex 399 | 131072 400 | HIDAccelTangentSpeedLinear 401 | 484966 402 | HIDAccelTangentSpeedParabolicRoot 403 | 786432 404 | 405 | 406 | HIDAccelGainLinear 407 | 39322 408 | HIDAccelGainParabolic 409 | 144179 410 | HIDAccelIndex 411 | 163840 412 | HIDAccelTangentSpeedLinear 413 | 498074 414 | HIDAccelTangentSpeedParabolicRoot 415 | 786432 416 | 417 | 418 | HIDAccelGainLinear 419 | 36045 420 | HIDAccelGainParabolic 421 | 157286 422 | HIDAccelIndex 423 | 196608 424 | HIDAccelTangentSpeedLinear 425 | 511181 426 | HIDAccelTangentSpeedParabolicRoot 427 | 786432 428 | 429 | 430 | HIDScrollAccelerationTable 431 | 432 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 433 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 434 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 435 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 436 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 437 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 438 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 439 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 440 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 441 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 442 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 443 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 444 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 445 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 446 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 447 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 448 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 449 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 450 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 451 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 452 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 453 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 454 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 455 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 456 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 457 | AAF8JGg= 458 | 459 | HIDScrollAccelerationType 460 | HIDTrackpadScrollAcceleration 461 | HIDScrollResolution 462 | 26214400 463 | IOCFPlugInTypes 464 | 465 | 0516B563-B15B-11DA-96EB-0014519758EF 466 | AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin 467 | 468 | IOClass 469 | AppleMultitouchTrackpadHIDEventDriver 470 | IOProbeScore 471 | 9999 472 | IOProviderClass 473 | IOHIDInterface 474 | MTEventSource 475 | 476 | ProductIDArray 477 | 478 | 628 479 | 480 | TrackpadEmbedded 481 | 482 | VendorID 483 | 1452 484 | 485 | Native Multitouch Engine 486 | 487 | CFBundleIdentifier 488 | com.alexandred.VoodooI2C 489 | IOClass 490 | VoodooI2CNativeEngine 491 | IOMatchCategory 492 | VoodooI2CNativeEngine 493 | IOProviderClass 494 | VoodooI2CMultitouchInterface 495 | 496 | VoodooI2CACPIController 497 | 498 | CFBundleIdentifier 499 | com.alexandred.VoodooI2C 500 | IOClass 501 | VoodooI2CACPIController 502 | IONameMatch 503 | 504 | INT33C2 505 | INT33C3 506 | INT3432 507 | INT3433 508 | 509 | IOProbeScore 510 | 9999 511 | IOProviderClass 512 | IOService 513 | 514 | VoodooI2CControllerDriver 515 | 516 | CFBundleIdentifier 517 | com.alexandred.VoodooI2C 518 | IOClass 519 | VoodooI2CControllerDriver 520 | IOProbeScore 521 | 9999 522 | IOProviderClass 523 | VoodooI2CControllerNub 524 | 525 | VoodooI2CPCIController 526 | 527 | CFBundleIdentifier 528 | com.alexandred.VoodooI2C 529 | IOClass 530 | VoodooI2CPCIController 531 | IONameMatch 532 | 533 | pci8086,34e8 534 | pci8086,6e8 535 | pci8086,6e9 536 | pci8086,2e8 537 | pci8086,2e9 538 | pci8086,9d60 539 | pci8086,9d61 540 | pci8086,9d62 541 | pci8086,9d63 542 | pci8086,9de8 543 | pci8086,9de9 544 | pci8086,a160 545 | pci8086,a161 546 | pci8086,a162 547 | pci8086,a368 548 | pci8086,a369 549 | pci8086,a36a 550 | pci8086,a36b 551 | 552 | IOProbeScore 553 | 9999 554 | IOProviderClass 555 | IOService 556 | 557 | 558 | LSMinimumSystemVersion 559 | 10.11 560 | NSHumanReadableCopyright 561 | Copyright © 2020 Alexandre Daoud. All rights reserved. 562 | OSBundleCompatibleVersion 563 | 2.0.0 564 | OSBundleLibraries 565 | 566 | com.alexandred.VoodooI2CServices 567 | 1.0 568 | com.apple.iokit.IOACPIFamily 569 | 1.4 570 | com.apple.iokit.IOHIDFamily 571 | 2.0 572 | com.apple.iokit.IOPCIFamily 573 | 2.9 574 | com.apple.kpi.bsd 575 | 8.0 576 | com.apple.kpi.iokit 577 | 14 578 | com.apple.kpi.libkern 579 | 14 580 | com.apple.kpi.mach 581 | 14 582 | org.coolstar.VoodooGPIO 583 | 1.1 584 | 585 | OSBundleRequired 586 | Root 587 | 588 | 589 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooGPIO 11 | CFBundleIdentifier 12 | org.coolstar.VoodooGPIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooGPIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 41 | IOKitPersonalities 42 | 43 | VoodooGPIOCannonLakeH 44 | 45 | CFBundleIdentifier 46 | org.coolstar.VoodooGPIO 47 | IOClass 48 | VoodooGPIOCannonLakeH 49 | IONameMatch 50 | 51 | INT3450 52 | 53 | IOProviderClass 54 | IOService 55 | 56 | VoodooGPIOCannonLakeLP 57 | 58 | CFBundleIdentifier 59 | org.coolstar.VoodooGPIO 60 | IOClass 61 | VoodooGPIOCannonLakeLP 62 | IONameMatch 63 | 64 | INT34BB 65 | 66 | IOProviderClass 67 | IOService 68 | 69 | VoodooGPIOSunrisePointH 70 | 71 | CFBundleIdentifier 72 | org.coolstar.VoodooGPIO 73 | IOClass 74 | VoodooGPIOSunrisePointH 75 | IONameMatch 76 | 77 | INT345D 78 | 79 | IOProviderClass 80 | IOService 81 | 82 | VoodooGPIOSunrisePointLP 83 | 84 | CFBundleIdentifier 85 | org.coolstar.VoodooGPIO 86 | IOClass 87 | VoodooGPIOSunrisePointLP 88 | IONameMatch 89 | 90 | INT344B 91 | 92 | IOProviderClass 93 | IOService 94 | 95 | 96 | LSMinimumSystemVersion 97 | 10.12 98 | NSHumanReadableCopyright 99 | Copyright © 2017 CoolStar. All rights reserved. 100 | OSBundleCompatibleVersion 101 | 1.1 102 | OSBundleLibraries 103 | 104 | com.apple.iokit.IOACPIFamily 105 | 1.4 106 | com.apple.kpi.iokit 107 | 13.0 108 | com.apple.kpi.libkern 109 | 13.0 110 | com.apple.kpi.mach 111 | 13.0 112 | 113 | OSBundleRequired 114 | Root 115 | 116 | 117 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2CServices 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2CServices 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2CServices 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 41 | IOKitPersonalities 42 | 43 | VoodooI2CLogger 44 | 45 | CFBundleIdentifier 46 | com.alexandred.VoodooI2CServices 47 | IOClass 48 | VoodooI2CLogger 49 | IOMatchCategory 50 | VoodooI2CLogger 51 | IOProviderClass 52 | VoodooI2CServices 53 | 54 | VoodooI2CServices 55 | 56 | CFBundleIdentifier 57 | com.alexandred.VoodooI2CServices 58 | IOClass 59 | VoodooI2CServices 60 | IOMatchCategory 61 | VoodooI2CServices 62 | IOProviderClass 63 | IOResources 64 | 65 | 66 | LSMinimumSystemVersion 67 | 10.11 68 | NSHumanReadableCopyright 69 | Copyright © 2017 Alexandre Daoud. All rights reserved. 70 | OSBundleCompatibleVersion 71 | 1.0.0 72 | OSBundleLibraries 73 | 74 | com.apple.kpi.iokit 75 | 14 76 | com.apple.kpi.libkern 77 | 14 78 | 79 | OSBundleRequired 80 | Root 81 | 82 | 83 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.me.kishorprins.VoodooInput 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleShortVersionString 16 | 1.0.7 17 | CFBundleVersion 18 | 1.0.7 19 | 20 | 21 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Resources/DWARF/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext.dSYM/Contents/Resources/DWARF/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19E258 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 41 | IOKitPersonalities 42 | 43 | Voodoo Input 44 | 45 | CFBundleIdentifier 46 | me.kishorprins.VoodooInput 47 | IOClass 48 | VoodooInput 49 | IOProbeScore 50 | 200 51 | IOPropertyMatch 52 | 53 | VoodooInputSupported 54 | 55 | 56 | IOProviderClass 57 | IOService 58 | 59 | 60 | LSMinimumSystemVersion 61 | 10.11 62 | NSHumanReadableCopyright 63 | Copyright © 2019 Kishor Prins. All rights reserved. 64 | OSBundleLibraries 65 | 66 | com.apple.iokit.IOHIDFamily 67 | 2.0 68 | com.apple.kpi.iokit 69 | 14 70 | com.apple.kpi.libkern 71 | 14 72 | com.apple.kpi.mach 73 | 13.0 74 | 75 | OSBundleRequired 76 | Root 77 | 78 | 79 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E266 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2CHID 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2CHID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2CHID 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E503a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 16E185 35 | DTSDKName 36 | macosx10.12 37 | DTXcode 38 | 1141 39 | DTXcodeBuild 40 | 11E503a 41 | IOKitPersonalities 42 | 43 | Intel ACPI Sensor Hub Enabler 44 | 45 | CFBundleIdentifier 46 | com.alexandred.VoodooI2CHID 47 | IOClass 48 | VoodooI2CSensorHubEnabler 49 | IONameMatch 50 | 51 | INT33D0 52 | 53 | IOProviderClass 54 | IOACPIPlatformDevice 55 | 56 | Sensor Hub Event Driver 57 | 58 | CFBundleIdentifier 59 | com.alexandred.VoodooI2CHID 60 | DeviceUsagePairs 61 | 62 | 63 | DeviceUsage 64 | 1 65 | DeviceUsagePage 66 | 32 67 | 68 | 69 | IOClass 70 | VoodooI2CSensorHubEventDriver 71 | IOProbeScore 72 | 100 73 | IOProviderClass 74 | IOHIDInterface 75 | 76 | VoodooI2CHIDDevice 77 | 78 | CFBundleIdentifier 79 | com.alexandred.VoodooI2CHID 80 | IOClass 81 | VoodooI2CHIDDevice 82 | IOProbeScore 83 | 100 84 | IOPropertyMatch 85 | 86 | compatible 87 | PNP0C50 88 | 89 | IOProviderClass 90 | VoodooI2CDeviceNub 91 | 92 | VoodooI2CHIDDevice Generic Mouse HID Event Driver 93 | 94 | CFBundleIdentifier 95 | com.alexandred.VoodooI2CHID 96 | DeviceUsagePairs 97 | 98 | 99 | DeviceUsage 100 | 2 101 | DeviceUsagePage 102 | 1 103 | 104 | 105 | HIDAccelCurves 106 | 107 | 108 | HIDAccelGainLinear 109 | 65536 110 | HIDAccelIndex 111 | 0 112 | HIDAccelTangentSpeedLinear 113 | 524288 114 | 115 | 116 | HIDAccelGainCubic 117 | 5243 118 | HIDAccelGainLinear 119 | 60293 120 | HIDAccelGainParabolic 121 | 26214 122 | HIDAccelIndex 123 | 8192 124 | HIDAccelTangentSpeedLinear 125 | 537395 126 | HIDAccelTangentSpeedParabolicRoot 127 | 1245184 128 | 129 | 130 | HIDAccelGainCubic 131 | 6554 132 | HIDAccelGainLinear 133 | 60948 134 | HIDAccelGainParabolic 135 | 36045 136 | HIDAccelIndex 137 | 32768 138 | HIDAccelTangentSpeedLinear 139 | 543949 140 | HIDAccelTangentSpeedParabolicRoot 141 | 1179648 142 | 143 | 144 | HIDAccelGainCubic 145 | 7864 146 | HIDAccelGainLinear 147 | 61604 148 | HIDAccelGainParabolic 149 | 46531 150 | HIDAccelIndex 151 | 45056 152 | HIDAccelTangentSpeedLinear 153 | 550502 154 | HIDAccelTangentSpeedParabolicRoot 155 | 1114112 156 | 157 | 158 | HIDAccelGainCubic 159 | 9830 160 | HIDAccelGainLinear 161 | 62259 162 | HIDAccelGainParabolic 163 | 57672 164 | HIDAccelIndex 165 | 57344 166 | HIDAccelTangentSpeedLinear 167 | 557056 168 | HIDAccelTangentSpeedParabolicRoot 169 | 1048576 170 | 171 | 172 | HIDAccelGainCubic 173 | 11796 174 | HIDAccelGainLinear 175 | 62915 176 | HIDAccelGainParabolic 177 | 69468 178 | HIDAccelIndex 179 | 65536 180 | HIDAccelTangentSpeedLinear 181 | 563610 182 | HIDAccelTangentSpeedParabolicRoot 183 | 983040 184 | 185 | 186 | HIDAccelGainCubic 187 | 14418 188 | HIDAccelGainLinear 189 | 63570 190 | HIDAccelGainParabolic 191 | 81920 192 | HIDAccelIndex 193 | 98304 194 | HIDAccelTangentSpeedLinear 195 | 570163 196 | HIDAccelTangentSpeedParabolicRoot 197 | 917504 198 | 199 | 200 | HIDAccelGainCubic 201 | 17695 202 | HIDAccelGainLinear 203 | 64225 204 | HIDAccelGainParabolic 205 | 95027 206 | HIDAccelIndex 207 | 131072 208 | HIDAccelTangentSpeedLinear 209 | 576717 210 | HIDAccelTangentSpeedParabolicRoot 211 | 851968 212 | 213 | 214 | HIDAccelGainCubic 215 | 21627 216 | HIDAccelGainLinear 217 | 64881 218 | HIDAccelGainParabolic 219 | 108790 220 | HIDAccelIndex 221 | 163840 222 | HIDAccelTangentSpeedLinear 223 | 583270 224 | HIDAccelTangentSpeedParabolicRoot 225 | 786432 226 | 227 | 228 | HIDAccelGainCubic 229 | 26214 230 | HIDAccelGainLinear 231 | 65536 232 | HIDAccelGainParabolic 233 | 123208 234 | HIDAccelIndex 235 | 196608 236 | HIDAccelTangentSpeedLinear 237 | 589824 238 | HIDAccelTangentSpeedParabolicRoot 239 | 786432 240 | 241 | 242 | IOClass 243 | IOHIDEventDriver 244 | IOProbeScore 245 | 100 246 | IOPropertyMatch 247 | 248 | Transport 249 | I2C 250 | 251 | IOProviderClass 252 | IOHIDInterface 253 | 254 | VoodooI2CHIDDevice Multitouch HID Event Driver 255 | 256 | CFBundleIdentifier 257 | com.alexandred.VoodooI2CHID 258 | DeviceUsagePairs 259 | 260 | 261 | DeviceUsage 262 | 4 263 | DeviceUsagePage 264 | 13 265 | 266 | 267 | DeviceUsage 268 | 5 269 | DeviceUsagePage 270 | 13 271 | 272 | 273 | DeviceUsage 274 | 2 275 | DeviceUsagePage 276 | 13 277 | 278 | 279 | IOClass 280 | VoodooI2CMultitouchHIDEventDriver 281 | IOProbeScore 282 | 200 283 | IOProviderClass 284 | IOHIDInterface 285 | 286 | VoodooI2CHIDDevice Precision Touchpad HID Event Driver 287 | 288 | CFBundleIdentifier 289 | com.alexandred.VoodooI2CHID 290 | DeviceUsagePairs 291 | 292 | 293 | DeviceUsage 294 | 5 295 | DeviceUsagePage 296 | 13 297 | 298 | 299 | IOClass 300 | VoodooI2CPrecisionTouchpadHIDEventDriver 301 | IOProbeScore 302 | 300 303 | IOPropertyMatch 304 | 305 | Transport 306 | I2C 307 | 308 | IOProviderClass 309 | IOHIDInterface 310 | ProcessBluetoothMouseStopsTrackpad 311 | 312 | ProcessUSBMouseStopsTrackpad 313 | 314 | QuietTimeAfterTyping 315 | 100 316 | RM,deliverNotifications 317 | 318 | 319 | VoodooI2CHIDDevice Stylus HID Event Driver 320 | 321 | CFBundleIdentifier 322 | com.alexandred.VoodooI2CHID 323 | DeviceUsagePairs 324 | 325 | 326 | DeviceUsage 327 | 2 328 | DeviceUsagePage 329 | 13 330 | 331 | 332 | IOClass 333 | VoodooI2CStylusHIDEventDriver 334 | IOProbeScore 335 | 300 336 | IOProviderClass 337 | IOHIDInterface 338 | 339 | VoodooI2CHIDDevice Touchscreen HID Event Driver 340 | 341 | CFBundleIdentifier 342 | com.alexandred.VoodooI2CHID 343 | DeviceUsagePairs 344 | 345 | 346 | DeviceUsage 347 | 4 348 | DeviceUsagePage 349 | 13 350 | 351 | 352 | IOClass 353 | VoodooI2CTouchscreenHIDEventDriver 354 | IOProbeScore 355 | 400 356 | IOProviderClass 357 | IOHIDInterface 358 | 359 | VoodooI2CHIDSYNA3602Device 360 | 361 | CFBundleIdentifier 362 | com.alexandred.VoodooI2CHID 363 | IOClass 364 | VoodooI2CHIDSYNA3602Device 365 | IOProbeScore 366 | 200 367 | IOPropertyMatch 368 | 369 | name 370 | SYNA3602 371 | 372 | IOProviderClass 373 | VoodooI2CDeviceNub 374 | 375 | 376 | LSMinimumSystemVersion 377 | 10.11 378 | NSHumanReadableCopyright 379 | Copyright © 2017 Alexandre Daoud. All rights reserved. 380 | OSBundleLibraries 381 | 382 | com.alexandred.VoodooI2C 383 | 2.0 384 | com.apple.iokit.IOACPIFamily 385 | 1.4 386 | com.apple.iokit.IOHIDFamily 387 | 2.0 388 | com.apple.kpi.iokit 389 | 14 390 | com.apple.kpi.libkern 391 | 14 392 | com.apple.kpi.mach 393 | 13.0 394 | 395 | OSBundleRequired 396 | Root 397 | 398 | 399 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.1.7, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | ACPI PS/2 Nub 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Controller 49 | FindMouseDelay 50 | 100 51 | IOClass 52 | AppleACPIPS2Nub 53 | IONameMatch 54 | 55 | PNP0303 56 | PNP030B 57 | PNP0320 58 | 59 | IOProviderClass 60 | IOACPIPlatformDevice 61 | MouseNameMatch 62 | 63 | PNP0F03 64 | PNP0F0B 65 | PNP0F0E 66 | PNP0F13 67 | 68 | 69 | ApplePS2Controller 70 | 71 | CFBundleIdentifier 72 | as.acidanthera.voodoo.driver.PS2Controller 73 | IOClass 74 | ApplePS2Controller 75 | IONameMatch 76 | ps2controller 77 | IOProviderClass 78 | IOPlatformDevice 79 | Platform Profile 80 | 81 | Default 82 | 83 | MouseWakeFirst 84 | 85 | WakeDelay 86 | 10 87 | 88 | HPQOEM 89 | 90 | 1411 91 | ProBook 92 | 1619 93 | ProBook 94 | 161C 95 | ProBook 96 | 164F 97 | ProBook 98 | 167C 99 | ProBook 100 | 167E 101 | ProBook 102 | 1680 103 | ProBook 104 | 179B 105 | ProBook 106 | 179C 107 | ProBook 108 | 17A9 109 | ProBook 110 | 17F0 111 | ProBook 112 | 17F3 113 | ProBook 114 | 17F6 115 | ProBook 116 | 1942 117 | ProBook 118 | 1949 119 | ProBook 120 | 198F 121 | ProBook 122 | ProBook 123 | 124 | WakeDelay 125 | 0 126 | 127 | ProBook-102 128 | ProBook 129 | ProBook-87 130 | ProBook 131 | 132 | 133 | RM,deliverNotifications 134 | 135 | 136 | 137 | LSMinimumSystemVersion 138 | 10.11 139 | OSBundleCompatibleVersion 140 | 2.1.7 141 | OSBundleLibraries 142 | 143 | com.apple.iokit.IOACPIFamily 144 | 1.0.0d1 145 | com.apple.kpi.bsd 146 | 8.0.0 147 | com.apple.kpi.iokit 148 | 8.0.0 149 | com.apple.kpi.libkern 150 | 8.0.0 151 | com.apple.kpi.mach 152 | 8.0.0 153 | com.apple.kpi.unsupported 154 | 8.0.0 155 | 156 | OSBundleRequired 157 | Console 158 | 159 | 160 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.8 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.8 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E708 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1160 39 | DTXcodeBuild 40 | 11E708 41 | IOKitPersonalities 42 | 43 | Voodoo Input 44 | 45 | CFBundleIdentifier 46 | me.kishorprins.VoodooInput 47 | IOClass 48 | VoodooInput 49 | IOProbeScore 50 | 200 51 | IOPropertyMatch 52 | 53 | VoodooInputSupported 54 | 55 | 56 | IOProviderClass 57 | IOService 58 | 59 | 60 | LSMinimumSystemVersion 61 | 10.11 62 | NSHumanReadableCopyright 63 | Copyright © 2019 Kishor Prins. All rights reserved. 64 | OSBundleLibraries 65 | 66 | com.apple.iokit.IOHIDFamily 67 | 2.0 68 | com.apple.kpi.iokit 69 | 14 70 | com.apple.kpi.libkern 71 | 14 72 | com.apple.kpi.mach 73 | 13.0 74 | 75 | OSBundleRequired 76 | Root 77 | 78 | 79 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 2.1.7, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | ApplePS2Mouse 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Mouse 49 | HIDPointerAccelerationType 50 | HIDTrackpadAcceleration 51 | HIDScrollAccelerationType 52 | HIDTrackpadScrollAcceleration 53 | IOClass 54 | ApplePS2Mouse 55 | IOProviderClass 56 | ApplePS2MouseDevice 57 | Platform Profile 58 | 59 | Default 60 | 61 | ActLikeTrackpad 62 | 63 | ButtonCount 64 | 3 65 | Darwin 16+ 66 | 67 | ApplePreferenceCapability 68 | 69 | ApplePreferenceIdentifier 70 | com.apple.AppleMultitouchTrackpad 71 | MT Built-in 72 | 73 | MTHIDDevice 74 | 75 | SupportsGestureScrolling 76 | 77 | TrackpadEmbedded 78 | 79 | TrackpadFourFingerGestures 80 | 81 | TrackpadSecondaryClickCorners 82 | 83 | TrackpadThreeFingerDrag 84 | 85 | 86 | DefaultResolution 87 | 240 88 | DisableDevice 89 | 90 | DisableLEDUpdating 91 | 92 | FakeMiddleButton 93 | 94 | ForceDefaultResolution 95 | 96 | ForceSetResolution 97 | 98 | MiddleClickTime 99 | 100000000 100 | MouseCount 101 | 0 102 | MouseYInverter 103 | 1 104 | ProcessBluetoothMouseStopsTrackpad 105 | 106 | ProcessUSBMouseStopsTrackpad 107 | 108 | QuietTimeAfterTyping 109 | 500000000 110 | ResolutionMode 111 | 3 112 | ScrollResolution 113 | 5 114 | ScrollYInverter 115 | 1 116 | TrackpadScroll 117 | 118 | WakeDelay 119 | 1000 120 | 121 | HPQOEM 122 | 123 | 1411 124 | ProBook 125 | 1619 126 | ProBook 127 | 161C 128 | ProBook 129 | 164F 130 | ProBook 131 | 167C 132 | ProBook 133 | 167E 134 | ProBook 135 | 1680 136 | ProBook 137 | 179B 138 | ProBook 139 | 179C 140 | ProBook 141 | 17A9 142 | ProBook 143 | 17F0 144 | ProBook 145 | 17F3 146 | ProBook 147 | 17F6 148 | ProBook 149 | 1942 150 | ProBook 151 | 1949 152 | ProBook 153 | 198F 154 | ProBook 155 | ProBook 156 | 157 | ActLikeTrackpad 158 | 159 | DisableDevice 160 | 161 | 162 | ProBook-102 163 | ProBook 164 | ProBook-87 165 | ProBook 166 | 167 | 168 | ProductID 169 | 547 170 | RM,deliverNotifications 171 | 172 | USBMouseStopsTrackpad 173 | 0 174 | VendorID 175 | 1452 176 | 177 | 178 | LSMinimumSystemVersion 179 | 10.11 180 | OSBundleLibraries 181 | 182 | as.acidanthera.voodoo.driver.PS2Controller 183 | 2.1.7 184 | com.apple.iokit.IOHIDFamily 185 | 1.0.0b1 186 | com.apple.kpi.iokit 187 | 9.0.0 188 | com.apple.kpi.libkern 189 | 9.0.0 190 | com.apple.kpi.mach 191 | 9.0.0 192 | 193 | OSBundleRequired 194 | Console 195 | 196 | 197 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleExecutable 8 | VoodooPS2Trackpad 9 | CFBundleGetInfoString 10 | 2.1.7, Copyright Apple Computer, Inc. 2002-2003, mackerintel 2008, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Trackpad 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Trackpad 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | ALPS GlidePoint 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Trackpad 49 | IOClass 50 | ApplePS2ALPSGlidePoint 51 | IOProbeScore 52 | 1500 53 | IOProviderClass 54 | ApplePS2MouseDevice 55 | Platform Profile 56 | 57 | Default 58 | 59 | DisableDevice 60 | 61 | 62 | HPQOEM 63 | 64 | 1411 65 | ProBook 66 | 1619 67 | ProBook 68 | 161C 69 | ProBook 70 | 164F 71 | ProBook 72 | 167C 73 | ProBook 74 | 167E 75 | ProBook 76 | 1680 77 | ProBook 78 | 179B 79 | ProBook 80 | 179C 81 | ProBook 82 | 17A9 83 | ProBook 84 | 17F0 85 | ProBook 86 | 17F3 87 | ProBook 88 | 17F6 89 | ProBook 90 | 1942 91 | ProBook 92 | 1949 93 | ProBook 94 | 198F 95 | ProBook 96 | ProBook 97 | 98 | DisableDevice 99 | 100 | 101 | ProBook-102 102 | ProBook 103 | ProBook-87 104 | ProBook 105 | 106 | 107 | 108 | Elantech TouchPad 109 | 110 | CFBundleIdentifier 111 | as.acidanthera.voodoo.driver.PS2Trackpad 112 | IOClass 113 | ApplePS2Elan 114 | IOProbeScore 115 | 7000 116 | IOProviderClass 117 | ApplePS2MouseDevice 118 | Platform Profile 119 | 120 | Default 121 | 122 | ButtonCount 123 | 3 124 | Darwin 16+ 125 | 126 | ApplePreferenceCapability 127 | 128 | ApplePreferenceIdentifier 129 | com.apple.AppleMultitouchTrackpad 130 | MT Built-in 131 | 132 | MTHIDDevice 133 | 134 | SupportsGestureScrolling 135 | 136 | TrackpadEmbedded 137 | 138 | TrackpadFourFingerGestures 139 | 140 | TrackpadSecondaryClickCorners 141 | 142 | TrackpadThreeFingerDrag 143 | 144 | 145 | DisableDevice 146 | 147 | ForceTouchMode 148 | 1 149 | MouseResolution 150 | 3 151 | MouseSampleRate 152 | 200 153 | ProcessBluetoothMouseStopsTrackpad 154 | 155 | ProcessUSBMouseStopsTrackpad 156 | 157 | QuietTimeAfterTyping 158 | 500000000 159 | ScrollResolution 160 | 400 161 | SetHwResolution 162 | 163 | TrackpointDividerX 164 | 120 165 | TrackpointDividerY 166 | 120 167 | TrackpointMultiplierX 168 | 120 169 | TrackpointMultiplierY 170 | 120 171 | USBMouseStopsTrackpad 172 | 0 173 | UseHighRate 174 | 175 | WakeDelay 176 | 1000 177 | 178 | 179 | RM,deliverNotifications 180 | 181 | 182 | Native Multitouch Engine 183 | 184 | CFBundleIdentifier 185 | as.acidanthera.voodoo.driver.PS2Trackpad 186 | IOClass 187 | VoodooPS2NativeEngine 188 | IOMatchCategory 189 | VoodooPS2NativeEngine 190 | IOProviderClass 191 | VoodooPS2MultitouchInterface 192 | 193 | Sentelic FSP 194 | 195 | CFBundleIdentifier 196 | as.acidanthera.voodoo.driver.PS2Trackpad 197 | IOClass 198 | ApplePS2SentelicFSP 199 | IOProbeScore 200 | 5500 201 | IOProviderClass 202 | ApplePS2MouseDevice 203 | Platform Profile 204 | 205 | Default 206 | 207 | DisableDevice 208 | 209 | 210 | HPQOEM 211 | 212 | 1411 213 | ProBook 214 | 1619 215 | ProBook 216 | 161C 217 | ProBook 218 | 164F 219 | ProBook 220 | 167C 221 | ProBook 222 | 167E 223 | ProBook 224 | 1680 225 | ProBook 226 | 179B 227 | ProBook 228 | 179C 229 | ProBook 230 | 17A9 231 | ProBook 232 | 17F0 233 | ProBook 234 | 17F3 235 | ProBook 236 | 17F6 237 | ProBook 238 | 1942 239 | ProBook 240 | 1949 241 | ProBook 242 | 198F 243 | ProBook 244 | ProBook 245 | 246 | DisableDevice 247 | 248 | 249 | ProBook-102 250 | ProBook 251 | ProBook-87 252 | ProBook 253 | 254 | 255 | 256 | Synaptics TouchPad 257 | 258 | CFBundleIdentifier 259 | as.acidanthera.voodoo.driver.PS2Trackpad 260 | HIDPointerAccelerationTable 261 | 262 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 263 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 264 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 265 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 266 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 267 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 268 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 269 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 270 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 271 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 272 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 273 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 274 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 275 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 276 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 277 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 278 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 279 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 280 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 281 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA== 282 | 283 | HIDPointerAccelerationType 284 | HIDTrackpadAcceleration 285 | HIDScrollAccelerationTable 286 | 287 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 288 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 289 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 290 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 291 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 292 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 293 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 294 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 295 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 296 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 297 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 298 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 299 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 300 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 301 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 302 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 303 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 304 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 305 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 306 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 307 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 308 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 309 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 310 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 311 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 312 | AAF8JGg= 313 | 314 | HIDScrollAccelerationType 315 | HIDTrackpadScrollAcceleration 316 | IOClass 317 | ApplePS2SynapticsTouchPad 318 | IOProbeScore 319 | 6000 320 | IOProviderClass 321 | ApplePS2MouseDevice 322 | Platform Profile 323 | 324 | Default 325 | 326 | ButtonCount 327 | 3 328 | Darwin 16+ 329 | 330 | ApplePreferenceCapability 331 | 332 | ApplePreferenceIdentifier 333 | com.apple.AppleMultitouchTrackpad 334 | MT Built-in 335 | 336 | MTHIDDevice 337 | 338 | SupportsGestureScrolling 339 | 340 | TrackpadEmbedded 341 | 342 | TrackpadFourFingerGestures 343 | 344 | TrackpadSecondaryClickCorners 345 | 346 | TrackpadThreeFingerDrag 347 | 348 | 349 | DisableDevice 350 | 351 | DisableLEDUpdating 352 | 353 | FakeMiddleButton 354 | 355 | ForceTouchCustomDownThreshold 356 | 90 357 | ForceTouchCustomPower 358 | 8 359 | ForceTouchCustomUpThreshold 360 | 20 361 | ForceTouchMode 362 | 1 363 | ForceTouchPressureThreshold 364 | 100 365 | MiddleClickTime 366 | 100000000 367 | MouseMiddleScroll 368 | 369 | ProcessBluetoothMouseStopsTrackpad 370 | 371 | ProcessUSBMouseStopsTrackpad 372 | 373 | QuietTimeAfterTyping 374 | 500000000 375 | Resolution 376 | 400 377 | ScrollResolution 378 | 400 379 | SkipPassThrough 380 | 381 | USBMouseStopsTrackpad 382 | 0 383 | UseHighRate 384 | 385 | WakeDelay 386 | 1000 387 | 388 | HPQOEM 389 | 390 | 1411 391 | ProBook 392 | 1619 393 | ProBook 394 | 161C 395 | ProBook 396 | 164F 397 | ProBook 398 | 167C 399 | ProBook 400 | 167E 401 | ProBook 402 | 1680 403 | ProBook 404 | 179B 405 | ProBook 406 | 179C 407 | ProBook 408 | 17A9 409 | ProBook 410 | 17F0 411 | ProBook 412 | 17F3 413 | ProBook 414 | 17F6 415 | ProBook 416 | 1942 417 | ProBook 418 | 1949 419 | ProBook 420 | 198F 421 | ProBook 422 | ProBook 423 | 424 | FingerZ 425 | 40 426 | 427 | ProBook-102 428 | ProBook 429 | ProBook-87 430 | ProBook 431 | 432 | LENOVO 433 | 434 | T420 435 | Thinkpad_TrackPad 436 | T460 437 | Thinkpad_ClickPad 438 | T560 439 | Thinkpad_ClickPad 440 | Thinkpad_ClickPad 441 | 442 | FakeMiddleButton 443 | 444 | FingerZ 445 | 30 446 | HWResetOnStart 447 | 448 | MouseMultiplierX 449 | 2 450 | MouseMultiplierY 451 | 2 452 | MouseScrollMultiplierX 453 | 2 454 | MouseScrollMultiplierY 455 | 2 456 | ScrollResolution 457 | 800 458 | Thinkpad 459 | 460 | 461 | Thinkpad_TrackPad 462 | 463 | FakeMiddleButton 464 | 465 | FingerZ 466 | 47 467 | HWResetOnStart 468 | 469 | Resolution 470 | 3200 471 | ScrollResolution 472 | 800 473 | Thinkpad 474 | 475 | 476 | X1CG3 477 | Thinkpad_ClickPad 478 | 479 | 480 | ProductID 481 | 547 482 | RM,deliverNotifications 483 | 484 | VendorID 485 | 1452 486 | 487 | 488 | LSMinimumSystemVersion 489 | 10.11 490 | OSBundleLibraries 491 | 492 | as.acidanthera.voodoo.driver.PS2Controller 493 | 2.1.7 494 | com.apple.iokit.IOHIDFamily 495 | 1.0.0b1 496 | com.apple.kpi.iokit 497 | 9.0.0 498 | com.apple.kpi.libkern 499 | 9.0.0 500 | com.apple.kpi.mach 501 | 9.0.0 502 | 503 | OSBundleRequired 504 | Console 505 | 506 | 507 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.4.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 11E708 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 19G68 37 | DTSDKName 38 | macosx10.15 39 | DTXcode 40 | 1160 41 | DTXcodeBuild 42 | 11E708 43 | IOKitPersonalities 44 | 45 | NVHDAEnabler 46 | 47 | CFBundleIdentifier 48 | as.vit9696.WhateverGreen 49 | IOClass 50 | NVHDAEnabler 51 | IOMatchCategory 52 | IOFramebuffer 53 | IOPCIClassMatch 54 | 0x03000000&0xff000000 55 | IOPCIMatch 56 | 0x000010de&0x0000ffff 57 | IOProbeScore 58 | 300000 59 | IOProviderClass 60 | IOPCIDevice 61 | 62 | as.vit9696.WhateverGreen 63 | 64 | CFBundleIdentifier 65 | as.vit9696.WhateverGreen 66 | IOClass 67 | WhateverGreen 68 | IOMatchCategory 69 | WhateverGreen 70 | IOProviderClass 71 | IOResources 72 | IOResourceMatch 73 | IOKit 74 | 75 | 76 | LSMinimumSystemVersion 77 | 10.8 78 | NSHumanReadableCopyright 79 | Copyright © 2018 vit9696. All rights reserved. 80 | OSBundleCompatibleVersion 81 | 1.0 82 | OSBundleLibraries 83 | 84 | as.vit9696.Lilu 85 | 1.2.0 86 | com.apple.iokit.IOPCIFamily 87 | 1.0.0b1 88 | com.apple.kpi.bsd 89 | 12.0.0 90 | com.apple.kpi.dsep 91 | 12.0.0 92 | com.apple.kpi.iokit 93 | 12.0.0 94 | com.apple.kpi.libkern 95 | 12.0.0 96 | com.apple.kpi.mach 97 | 12.0.0 98 | com.apple.kpi.unsupported 99 | 12.0.0 100 | 101 | OSBundleRequired 102 | Root 103 | 104 | 105 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /EFI/OC/Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Apple.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/Apple.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/AppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/AppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/Cursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/ExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/ExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/ExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/HardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldCursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldCursor.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldExtAppleRecv.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldExtAppleTM.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldExtHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldHardDrive.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldSelected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldSelected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldSelector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldSelector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldShell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldShell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldTool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldTool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/OldWindows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/OldWindows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/Selected.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/Selector.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/Shell.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/Tool.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Image/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Image/Windows.icns -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /EFI/OC/Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Resources/Label/Windows.lbl -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/VerifyMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Tools/VerifyMsrE2.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/modGRUBShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/EFI/OC/Tools/modGRUBShell.efi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dell XPS15 9500 OpenCore (MacOS) 2 | 3 | This is an OpenCore EFI that allows you to install and boot macOS X Catalina on your Dell XPS 15 9500 (2020). 4 | 5 | OpenCore Version: 0.6.3 6 | 7 | macOS Version: Catalina 10.15.7 8 | 9 | ![alt text](https://github.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/blob/main/Screenshot.png?raw=true) 10 | 11 | --- 12 | 13 | ## Functional Status 14 | 15 | |Function / Hardware|Status| 16 | |-|-| 17 | |iGPU UHD630 Acceleration|Working| 18 | |CPU Power Management|Working - idles at 800MHz, boosts to max Turbo frequency| 19 | |Laptop Keyboard|Working| 20 | |Laptop Trackpad|Working| 21 | |Laptop Headphones Jack|Working| 22 | |Built-in Speakers|Working| 23 | |Built-in Mic|Working| 24 | |Hotkeys for audio|Working| 25 | |USB 3.x|Working| 26 | |USB 2.0|Working| 27 | |Fingerprint Sensor|Not working| 28 | |SD Card Slot|Working| 29 | |Screen brightness|Working, hotkeys fn+S/fn+B to decrease/increase brightness| 30 | |Built-in Wifi|Working| 31 | |Built-in Bluetooth|Working excepted for Bluetooth 4.0 mice| 32 | |Dell USB3.1 dock|Working| 33 | |RTL8153 USB Ethernet on Dell dock|Working| 34 | |Other peripherals on Dell dock|Working| 35 | |Built-in webcam|Working| 36 | |Sleep|Doesn't works on MacOS, still works on Windows ([see sleep section](https://github.com/BenDevelopment/XPS15-9500-OpenCore#sleep))| 37 | |Multiboot|Working| 38 | 39 | --- 40 | 41 | ## Important 42 | 43 | This EFI was created from this one https://github.com/zachs78/MacOS-XPS-9500-OpenCore/. 44 | 45 | Original nvme SSD Micron was causing MacOS boot crashes. The Micron SSD has been replaced with a Crucial SSD P1 NVMe. 46 | 47 | Windows is installed on this Crucial SSD before the OpenCore installation. OpenCore is installed on a second SSD. 48 | 49 | Quick Note: My serial number, MLB, and UUID have been removed from the config.plist. Please use CorpNewt's [GenSMBIOS](https://github.com/corpnewt/GenSMBIOS) to create your own (search for "GenSMBIOS" on plist to find the values you have to change). 50 | 51 | --- 52 | 53 | ## Making the USB installer 54 | 55 | To create an EFI bootable USB key with MacOS installer, follow the steps described here: 56 | https://dortania.github.io/OpenCore-Install-Guide/installer-guide/winblows-install.html#downloading-macos-modern 57 | 58 | Once the USB key created, replace the EFI folder by the one is this repository. Setup the BIOS as described in the [BIOS Settings section](https://github.com/BenDevelopment/XPS15-9500-OpenCore#bios-settings) and disable CFG Lock as described in the [How to disable CFG Lock section](https://github.com/BenDevelopment/XPS15-9500-OpenCore#how-to-disable-cfg-lock). You can now boot on the USB key. 59 | 60 | --- 61 | 62 | ## BIOS Settings 63 | 64 | Disable the following 65 | - Touchscreen (if enabled, MacOS will consider the touchscreen as trackpad and disable the trackpad) 66 | - Secure boot 67 | - Disable CFG Lock (via modGRUBShell) 68 | 69 | --- 70 | 71 | ## How to disable CFG Lock 72 | 73 | This is specific to XPS 15 9500 only (along with its sibling models and previous gen). 74 | 75 | WARNING: tools are disabled on this plist. To activate tools at startup, set `Misc > Boot > ShowPicker=YES` and `Misc > Boot > HideAuxiliary=NO`. 76 | 77 | Select the modGRUBShell option at startup (OpenCore boot selection page). 78 | At the grub prompt, enter the following commands (the first line unlocks CFG, the second line unlocks overclocking). 79 | 80 | ``` 81 | setup_var CpuSetup 0x3e 0x0 82 | setup_var CpuSetup 0xda 0x0 83 | exit 84 | ``` 85 | 86 | Restart your laptop and boot into the BIOS. Do a factory reset. Now your CFG lock will be disabled. You can confirm that by running the VerifyMSR2 option. 87 | 88 | If you update your BIOS, you may need to do this again but so far Dell has been kind to us. 89 | 90 | --- 91 | 92 | ## Sleep 93 | 94 | Sleep doesn't works on MacOS. To disable sleep permanently, run this command in MacOS: 95 | ``` 96 | sudo pmset -a disablesleep 1 97 | ``` 98 | This way, sleep can be stay enabled on BIOS settings so other OS can still use it. 99 | 100 | --- 101 | 102 | ## Intel® Virtualization Technology for Directed I/O (VT-d) 103 | 104 | This BIOS option allows the virtualized OS to use hardware like if it was not virtualized. This is usefull if you run virtualized OS in Windows or MacOS. 105 | [This is recommended to be disabled by @zachs78](https://github.com/zachs78/MacOS-XPS-9500-OpenCore#bios-settings) but it seems to works well keeping it enabled. 106 | DisableIOMapper must be enabled in plist as said here https://dortania.github.io/OpenCore-Install-Guide/config-laptop.plist/coffee-lake-plus.html#quirks-3. 107 | 108 | --- 109 | 110 | ## Brightness hotkeys 111 | 112 | The BRT6 patch used by previous Dell XPS models isn't working on the XPS 9500. However, fn+S and fn+B hotkeys are functioning in place of the original fn+F6 and fn+F7. 113 | 114 | --- 115 | 116 | ## Undervolting 117 | 118 | This EFI comes preinstalled with VoltageShift kext. To undervolt, visit https://github.com/sicreative/VoltageShift (skip the kext loading part). 119 | 120 | --- 121 | 122 | ## rEFInd (Not needed) 123 | 124 | __ATTENTION: Bootin Windows 10 works now with OpencCore. rEFInd isn't needed, prefer using OpenCanopy which is already configured on this repository. 125 | You can skip this whole part.__ 126 | 127 | Windows was not booting via OpenCore picker. The problem was due to OpenCore injecting the dsdt/ssdt for all OS (not only for Darwin). You can read more here: 128 | 129 | - https://dortania.github.io/OpenCore-Install-Guide/why-oc.html#does-opencore-always-inject-smbios-and-acpi-data-into-other-oses 130 | - https://www.insanelymac.com/forum/topic/338516-opencore-discussion/?page=19&tab=comments#comment-2675604. 131 | 132 | There are the solutions: 133 | - Previous solution was adding `If (_OSI ("Darwin"))` in all ssdt (according to [my researchs](https://www.reddit.com/r/hackintosh/comments/f9rbcl/need_some_advice_on_opencore_dsdt_edits_for_laptop/fiu1jwl?utm_source=share&utm_medium=web2x&context=3), it can be done but it require to build the ssdt by yourself). 134 | - Second solution: don't use OpenCore for boot selection. 135 | - __The working solution__ is to use the AML from Dortania: https://github.com/dortania/Getting-Started-With-ACPI/blob/master/extra-files/compiled/SSDT-XOSI.aml (__Already included on this EFI, you have nothing to do)__. 136 | 137 | The first one is kind of difficult. 138 | The second one (wich I'm using), is the easier way for me. The goal is to use rEFInd instead of OpenCore for OS picker (OpenCore will still be used only to run MacOS). 139 | Here is the process: 140 | 141 | ### Install rEFInd 142 | 143 | To install rEFInd, follow thoses steps: 144 | - Download rEFInd's files: http://sourceforge.net/projects/refind/files/0.12.0/refind-bin-0.12.0.zip/download 145 | - Mount your system's EFI 146 | - Move OpenCore's `BOOTx64.efi` to `EFI/OC/` (kind of backup) 147 | - Copy rEFInd's `refind_x64.efi` to `EFI/BOOT` 148 | - Rename this `refind_x64.efi` to `BOOTx64.efi` 149 | - Add the rEFInd's folders `drivers_x64`, `tools` and `icons` to `EFI/BOOT` 150 | - Copy `refind.conf-sample` to `EFI/OC` 151 | - Rename `refind.conf-sample` to `refind.conf` 152 | 153 | [Source](https://github.com/dortania/Hackintosh-Mini-Guides/blob/master/refind.md#macos-setup) 154 | 155 | ### Make the computer boot on rEFInd instead of OpenCore 156 | 157 | 1. Disable OpenCore picker in plist (`Misc > Boot > ShowPicker=NO`). This will automatically run MacOS instead of showing OpenCore picker (OpenCore is still working, this will only disable the picker). 158 | 2. Disable `BootProtect` in plist (`Misc > Security > BootProtect=None`). This will prevent OpenCore to automatically set itself as first boot item in your BIOS. 159 | 3. Set your macOS drive as first boot device (this is the drive where your EFI partition stands, the one with rEFInd). 160 | 161 | Now when you are booting you computer, you should have rEFInd OS picker instead of OpenCore picker. The default rEFIng configuration will show you all the availables EFI partition (displayed with an ugly theme IMO ^^). 162 | 163 | This will chain your boot: first rEFInd, then OpenCore (if you boot to MacOS). Booting to Windows will not run through OpenCore, that's why we don't get the `acpi_bios_error` which was causing by OpenCore ACPI DSDT/SSDT injections). 164 | 165 | ### Theming rEFInd 166 | 167 | Using rEFInd allows you to set up aditionnal picker themes easily (there are a lot of themes available for rEFInd in github: https://github.com/topics/refind-theme). 168 | 169 | 1. Create a `refind/themes` folder on your EFI folder (in your EFI partition) and past the theme folder in this directory. 170 | 2. Edit the `BOOT/refind.conf` file like that: 171 | ``` 172 | timeout 20 173 | 174 | menuentry "Windows" { 175 | icon /EFI/refind/themes/theme-name/icons/os_win.png 176 | volume ESP 177 | loader EFI\Microsoft\Boot\bootmgfw.efi 178 | } 179 | 180 | menuentry "OSX" { 181 | icon /EFI/refind/themes/theme-name/icons/os_mac.png 182 | loader EFI/OC/Bootstrap/Bootstrap.efi 183 | } 184 | 185 | scanfor manual,external 186 | 187 | include /EFI/refind/themes/theme-name/theme.conf 188 | ``` 189 | 3. In your Windows menuentry, you have to specify the volume of your Windows EFI partition (you can find this name on your MacOS by mounting this partition (you will see the name on your Finder). Mine is `ESP` (for "EFI System Partition"). 190 | 4. Finally, you have to edit the `theme.conf` file (`/EFI/refind/themes/theme-name/theme.conf`) to update the paths to match your absolute theme folder. Example: 191 | ``` 192 | banner themes/theme-name/background.png 193 | ``` 194 | becomes 195 | ``` 196 | banner /EFI/refind/themes/theme-name/background.png 197 | ``` 198 | Now your rEFInd should be themed. You can create your own theme easily since rEFInd supports common images formats (jpg, png, ...). 199 | 200 | ### Uninstall rEFIind (back to OpenCore) 201 | 202 | - Remove refind.conf from `EFI/BOOT` 203 | - Remove the folders `drivers_x64`, `tools` and `icons` from `EFI/BOOT` 204 | - Remove `BOOTx64.efi` from `EFI/BOOT` (this is the rEFInd `efi` file which was `refind_x64.efi` before renamed to `BOOTx64.efi`) 205 | - Move `BOOTx64.efi` from `EFI/OC/` to `EFI/BOOT` (this is the OpenCore original `efi` file) 206 | - Remove the `EFI/refind` folder (it should only contains themes, you can keep it if you plan to reactivate rEFInd later) 207 | -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/Screenshot.png -------------------------------------------------------------------------------- /boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenDevelopment/MacOS-XPS-9500-2020-OpenCore/21d33e1a35bba28c45e73fcadd1fa30f44a86ce8/boot --------------------------------------------------------------------------------