├── .gitignore ├── EFI ├── BOOT │ └── BOOTx64.efi └── OC │ ├── ACPI │ ├── 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 │ ├── Bootstrap │ └── Bootstrap.efi │ ├── Drivers │ ├── HFSPlus.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 │ ├── 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 │ ├── Tools │ ├── OpenShell.efi │ ├── VerifyMsrE2.efi │ └── modGRUBShell.efi │ └── config.plist ├── LICENSE ├── OpenCore-Catalina-XPS-17-9700.jpg └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | -------------------------------------------------------------------------------- /EFI/BOOT/BOOTx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/BOOT/BOOTx64.efi -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-ALSD.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-ALSD.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-AWAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-AWAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-DMAC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-DMAC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-EC-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-EC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-EC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-MEM2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-MEM2.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-NoHybGfx.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-NoHybGfx.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-OCWork-dell.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-OCWork-dell.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PNLF-CFL.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-PNLF-CFL.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-PPMC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-PPMC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-RTC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-RTC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-SBUS-MCHC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-SBUS-MCHC.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-USBX.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-XOSI.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-XOSI.aml -------------------------------------------------------------------------------- /EFI/OC/ACPI/SSDT-dGPU-Off.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/ACPI/SSDT-dGPU-Off.aml -------------------------------------------------------------------------------- /EFI/OC/Bootstrap/Bootstrap.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Bootstrap/Bootstrap.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/HFSPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Drivers/HFSPlus.efi -------------------------------------------------------------------------------- /EFI/OC/Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/AirportItlwm.kext/Contents/MacOS/AirportItlwm -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/CodeResources -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/MacOS/AppleRTL815XEthernet110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/MacOS/AppleRTL815XEthernet110 -------------------------------------------------------------------------------- /EFI/OC/Kexts/AppleRTL815XEthernet110.kext/Contents/Resources/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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 | 18E226 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.1 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.1 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | NSHumanReadableCopyright 78 | Copyright © 2017 - 2019 PMheart. All rights reserved. 79 | OSBundleCompatibleVersion 80 | 1.0 81 | OSBundleLibraries 82 | 83 | as.vit9696.Lilu 84 | 1.2.0 85 | com.apple.iokit.IOACPIFamily 86 | 1.0.0d1 87 | com.apple.kpi.bsd 88 | 12.0.0 89 | com.apple.kpi.dsep 90 | 12.0.0 91 | com.apple.kpi.iokit 92 | 12.0.0 93 | com.apple.kpi.libkern 94 | 12.0.0 95 | com.apple.kpi.mach 96 | 12.0.0 97 | com.apple.kpi.unsupported 98 | 12.0.0 99 | 100 | OSBundleRequired 101 | Root 102 | 103 | 104 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/IntelBluetoothFirmware.kext/Contents/MacOS/IntelBluetoothFirmware -------------------------------------------------------------------------------- /EFI/OC/Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | NSHumanReadableCopyright 60 | Copyright © 2016-2020 vit9696. All rights reserved. 61 | OSBundleCompatibleVersion 62 | 1.2.0 63 | OSBundleLibraries 64 | 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/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/NoTouchID.kext/Contents/MacOS/NoTouchID -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 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 | 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.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.iokit.IOSMBusFamily 83 | 1.0.0 84 | com.apple.kpi.bsd 85 | 12.0.0 86 | com.apple.kpi.dsep 87 | 12.0.0 88 | com.apple.kpi.iokit 89 | 12.0.0 90 | com.apple.kpi.libkern 91 | 12.0.0 92 | com.apple.kpi.mach 93 | 12.0.0 94 | com.apple.kpi.unsupported 95 | 12.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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 | 18E226 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.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 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 | NSHumanReadableCopyright 69 | Copyright © 2018 usrsse2. All rights reserved. 70 | OSBundleCompatibleVersion 71 | 1.0.0 72 | OSBundleLibraries 73 | 74 | as.vit9696.Lilu 75 | 1.2.0 76 | as.vit9696.VirtualSMC 77 | 1.0.0 78 | com.apple.kpi.bsd 79 | 12.0.0 80 | com.apple.kpi.dsep 81 | 12.0.0 82 | com.apple.kpi.iokit 83 | 12.0.0 84 | com.apple.kpi.libkern 85 | 12.0.0 86 | com.apple.kpi.mach 87 | 12.0.0 88 | com.apple.kpi.unsupported 89 | 12.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.6 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.6 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 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 | NSHumanReadableCopyright 58 | Copyright © 2018 vit9696. All rights reserved. 59 | OSBundleCompatibleVersion 60 | 1.0.0 61 | OSBundleLibraries 62 | 63 | as.vit9696.Lilu 64 | 1.2.0 65 | as.vit9696.VirtualSMC 66 | 1.0.0 67 | com.apple.iokit.IOACPIFamily 68 | 1.0.0d1 69 | com.apple.kpi.bsd 70 | 12.0.0 71 | com.apple.kpi.dsep 72 | 12.0.0 73 | com.apple.kpi.iokit 74 | 12.0.0 75 | com.apple.kpi.libkern 76 | 12.0.0 77 | com.apple.kpi.mach 78 | 12.0.0 79 | com.apple.kpi.unsupported 80 | 12.0.0 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | NSHumanReadableCopyright 67 | Copyright © 2018 vit9696. All rights reserved. 68 | OSBundleCompatibleVersion 69 | 1.0 70 | OSBundleLibraries 71 | 72 | as.vit9696.Lilu 73 | 1.2.0 74 | as.vit9696.VirtualSMC 75 | 1.0.0 76 | com.apple.iokit.IOACPIFamily 77 | 1.0.0d1 78 | com.apple.kpi.bsd 79 | 12.0.0 80 | com.apple.kpi.dsep 81 | 12.0.0 82 | com.apple.kpi.iokit 83 | 12.0.0 84 | com.apple.kpi.libkern 85 | 12.0.0 86 | com.apple.kpi.mach 87 | 12.0.0 88 | com.apple.kpi.unsupported 89 | 12.0.0 90 | 91 | OSBundleRequired 92 | Root 93 | 94 | 95 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 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.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | NSHumanReadableCopyright 62 | Copyright © 2018 joedm. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 12.0.0 75 | com.apple.kpi.dsep 76 | 12.0.0 77 | com.apple.kpi.iokit 78 | 12.0.0 79 | com.apple.kpi.libkern 80 | 12.0.0 81 | com.apple.kpi.mach 82 | 12.0.0 83 | com.apple.kpi.unsupported 84 | 12.0.0 85 | 86 | OSBundleRequired 87 | Root 88 | 89 | 90 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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 | 18E226 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.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.1.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | NSHumanReadableCopyright 385 | Copyright © 2017 vit9696. All rights reserved. 386 | OSBundleCompatibleVersion 387 | 1.0 388 | OSBundleLibraries 389 | 390 | as.vit9696.Lilu 391 | 1.2.0 392 | com.apple.iokit.IOACPIFamily 393 | 1.0.0d1 394 | com.apple.kpi.bsd 395 | 12.0.0 396 | com.apple.kpi.dsep 397 | 12.0.0 398 | com.apple.kpi.iokit 399 | 12.0.0 400 | com.apple.kpi.libkern 401 | 12.0.0 402 | com.apple.kpi.mach 403 | 12.0.0 404 | com.apple.kpi.unsupported 405 | 12.0.0 406 | 407 | OSBundleRequired 408 | Root 409 | 410 | 411 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/VoltageShift.kext/Contents/MacOS/VoltageShift -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoltageShift.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.1.3, 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.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | OSBundleCompatibleVersion 138 | 2.1.3 139 | OSBundleLibraries 140 | 141 | com.apple.iokit.IOACPIFamily 142 | 1.0.0d1 143 | com.apple.kpi.bsd 144 | 8.0.0 145 | com.apple.kpi.iokit 146 | 8.0.0 147 | com.apple.kpi.libkern 148 | 8.0.0 149 | com.apple.kpi.mach 150 | 8.0.0 151 | com.apple.kpi.unsupported 152 | 8.0.0 153 | 154 | OSBundleRequired 155 | Console 156 | 157 | 158 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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 | 18E226 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.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 | 10E1001 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18E219 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1020 39 | DTXcodeBuild 40 | 10E1001 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 | NSHumanReadableCopyright 61 | Copyright © 2019 Kishor Prins. All rights reserved. 62 | OSBundleLibraries 63 | 64 | com.apple.iokit.IOHIDFamily 65 | 2.0 66 | com.apple.kpi.iokit 67 | 14 68 | com.apple.kpi.libkern 69 | 14 70 | com.apple.kpi.mach 71 | 13.0 72 | 73 | OSBundleRequired 74 | Root 75 | 76 | 77 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18E226 7 | CFBundleExecutable 8 | VoodooPS2Keyboard 9 | CFBundleGetInfoString 10 | 2.1.3, Copyright Apple Computer, Inc. 2000-2003, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Keyboard 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Keyboard 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 43 | IOKitPersonalities 44 | 45 | ApplePS2Keyboard 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.voodoo.driver.PS2Keyboard 49 | IOClass 50 | ApplePS2Keyboard 51 | IOProviderClass 52 | ApplePS2KeyboardDevice 53 | Platform Profile 54 | 55 | DELL 56 | 57 | Dell-Keys 58 | 59 | Breakless PS2 60 | 61 | e005 62 | e006 63 | 64 | Function Keys Special 65 | 66 | ;The following 12 items map Fn+fkeys to fkeys 67 | e020=3b 68 | e02e=3c 69 | e030=3d 70 | e022=3e 71 | ;Fn+f5 macro 72 | ;Fn+f6 macro 73 | ;Fn+f7 macro 74 | ;Fn+f8 macro 75 | ;Fn+f9 macro 76 | ;Fn+f10 no code 77 | e005=57 78 | e006=58 79 | ;The following 12 items map fkeys to Fn+fkeys 80 | 3b=e020 81 | 3c=e02e 82 | 3d=e030 83 | 3e=e022 84 | ;Fn+f5 macro 85 | ;Fn+f6 macro 86 | ;Fn+f7 macro 87 | ;Fn+f8 macro 88 | ;Fn+f9 macro 89 | ;Fn+f10 no code 90 | 57=e005 91 | 58=e006 92 | 93 | Function Keys Standard 94 | 95 | ;The following 12 items map Fn+fkeys to Fn+fkeys 96 | e020=e020 97 | e02e=e02e 98 | e030=e030 99 | e022=e022 100 | ;Fn+f5 macro 101 | ;Fn+f6 macro 102 | ;Fn+f7 macro 103 | ;Fn+f8 macro 104 | ;Fn+f9 macro 105 | ;Fn+f10 no code 106 | e005=e005 107 | e006=e006 108 | ;The following 12 items map fkeys to fkeys 109 | 3b=3b 110 | 3c=3c 111 | 3d=3d 112 | 3e=3e 113 | 3f=3f 114 | 40=40 115 | 41=41 116 | 42=42 117 | 43=43 118 | 44=44 119 | 57=57 120 | 58=58 121 | 122 | 123 | HSW-LPT 124 | Dell-Keys 125 | SNB-CPT 126 | 127 | ActionSwipeDown 128 | 63 d, 63 u 129 | ActionSwipeUp 130 | 61 d, 61 u 131 | Breakless PS2 132 | 133 | e01e;Touchpad Fn+f3 is breakless 134 | e06e;REVIEW: temporary for case that macro inversion does not work... 135 | 136 | Custom ADB Map 137 | 138 | e009=83;Dell Support to Launchpad 139 | e0f1=71;Call brightens up w RKA1 for special mode (was =90) 140 | e0f2=6b;Call brightens down w RKA2 for special mode (was =91) 141 | e06e=70;Map vidmirror key for special mode default is adb90 142 | 143 | Custom PS2 Map 144 | 145 | e01e=e037;Map tp disable to Fn+f3 146 | e037=e01e;Prevent PrntScr from triggering tp disable 147 | 148 | Function Keys Special 149 | 150 | ;The following 12 items map Fn+fkeys to fkeys 151 | e06e=3b 152 | e008=3c 153 | e01e=3d 154 | e005=3e 155 | e006=3f 156 | e00c=40 157 | ;Fn+f7 no dedicated macro 158 | e010=42 159 | e022=43 160 | e019=44 161 | e02e=57 162 | e030=58 163 | ;The following 12 items map fkeys to Fn+fkeys 164 | 3b=e06e;Map vidmirror key to f1 165 | 3c=e0f0;Map radio toggle action from EC query to f2 166 | 3d=e037;Map touchpad toggle button to f3 167 | 3e=e0f2;Map acpi RKA2 to f4 brightness down 168 | 3f=e0f1;Map acpi RKA1 to f5 brightness up 169 | 40=e0f3;Map acpi RKA3 to f6 keyboard backlight 170 | ;Fn+f7 no macro 171 | 42=e010 172 | 43=e022 173 | 44=e019 174 | 57=e02e 175 | 58=e030 176 | 177 | Function Keys Standard 178 | 179 | ;The following 12 items map Fn+fkeys to Fn+fkeys 180 | e06e=e06e;Fn+f1 macro translated 181 | e008=e008;Fn+f2 regular scancode and EC query call q8c 182 | e01e=e037;Fn+f3 regular scancode and EC controls LED 183 | e005=e005;Fn+f4 no ps2scancode and EC query call q81 184 | e006=e006;Fn+f5 no ps2scancode and EC query call q80 185 | e00c=e00c;Fn+f6 no ps2scancode and EC query call q8a 186 | ;Fn+f7 no macro just regular f key 187 | e010=e010; Fn+f8 regular scancode 188 | e022=e022; Fn+f9 regular scancode 189 | e019=e019;Fn+f10 regular scancode 190 | e02e=e02e;Fn+f11 regular scancode 191 | e030=e030;Fn+f12 regular scancode 192 | ;Fn+f13 is mute dedicated button that always produces e020 regardless of Fn 193 | ;The following 12 items map fkeys to fkeys 194 | 3b=3b 195 | 3c=3c 196 | 3d=3d 197 | 3e=3e 198 | 3f=3f 199 | 40=40 200 | 41=41 201 | 42=42 202 | 43=43 203 | 44=44 204 | 57=57 205 | 58=58 206 | 207 | Macro Inversion 208 | 209 | ;This section maps ps2 codes (packet format) received quickly (macros) into fake ps2 codes (packet format) 210 | ;Fn+F1 211 | 212 | //8CbgAAAAACWwEZ 213 | 214 | 215 | //8C7gAAAAAC2wGZ 216 | 217 | 218 | //8C7gAAAAABmQLb 219 | 220 | 221 | MaximumMacroTime 222 | 35000000 223 | Note-Author 224 | TimeWalker aka TimeWalker75a 225 | Note-Comment 226 | Keyboard Profile for DELL SandyBridge SecureCore Tiano based laptops (Vostro 3450 & 3750, Inspiron N4110, XPS L502x & L702x & L511z) 227 | 228 | WN09 229 | 230 | Breakless PS2 231 | 232 | e01b 233 | e008 234 | e01e 235 | e005 236 | e06e 237 | e006 238 | 239 | Custom ADB Map 240 | 241 | e01b=70 242 | e06e=83 243 | 244 | Custom PS2 Map 245 | 246 | 56=2b 247 | 29=56 248 | 2b=29 249 | e01e=e037 250 | e037=e01e 251 | 252 | 253 | WN09a 254 | 255 | Breakless PS2 256 | 257 | e01b 258 | e008 259 | e01e 260 | e005 261 | e06e 262 | e006 263 | 264 | Custom ADB Map 265 | 266 | e01b=70 267 | e06e=83 268 | 269 | Custom PS2 Map 270 | 271 | e01e=e037 272 | e037=e01e 273 | 274 | 275 | 276 | Default 277 | 278 | Breakless PS2 279 | 280 | ;Items must be strings in the form of breaklessscan (in hex) 281 | 282 | Custom ADB Map 283 | 284 | ;Items must be strings in the form of scanfrom=adbto (in hex) 285 | 286 | Custom PS2 Map 287 | 288 | ;Items must be strings in the form of scanfrom=scanto (in hex) 289 | e027=0;disable discrete fnkeys toggle 290 | e028=0;disable discrete trackpad toggle 291 | 292 | HIDF12EjectDelay 293 | 250 294 | LogScanCodes 295 | 0 296 | Make Application key into Apple Fn key 297 | 298 | Make Application key into right windows 299 | 300 | Make right modifier keys into Hangul and Hanja 301 | 302 | SleepPressTime 303 | 0 304 | Swap capslock and left control 305 | 306 | Swap command and option 307 | 308 | Use ISO layout keyboard 309 | 310 | alt_handler_id 311 | 3 312 | 313 | HPQOEM 314 | 315 | 1411 316 | ProBook-102;ProBook 4520s 317 | 1619 318 | ProBook-87;ProBook 6560b 319 | 161C 320 | ProBook-87;ProBook 8460p 321 | 164F 322 | ProBook-87;ProBook 5330m 323 | 167C 324 | ProBook-102;ProBook 4530s 325 | 167E 326 | ProBook-102;ProBook 4330s 327 | 1680 328 | ProBook-102;ProBook 4230s 329 | 179B 330 | ProBook-87;ProBook 6470b 331 | 179C 332 | ProBook-87;ProBook 6470b 333 | 17A9 334 | ProBook-87;ProBook 8570b 335 | 17F0 336 | ProBook-102;ProBook 4340s 337 | 17F3 338 | ProBook-102;ProBook 4440s 339 | 17F6 340 | ProBook-102;ProBook 4540s 341 | 1942 342 | ProBook-87;ProBook 450s G1 343 | 1949 344 | ProBook-87;ProBook 450s G1 345 | 1962 346 | Haswell-Envy;HP Envy 15-j063cl 347 | 1963 348 | Haswell-Envy;HP Envy 15-j063cl 349 | 1965 350 | Haswell-Envy;HP Envy 17t-j100 351 | 1966 352 | Haswell-Envy;HP Envy 17t-j000 353 | 198F 354 | ProBook-87;ProBook 450s G0 355 | Haswell-Envy 356 | 357 | Custom ADB Map 358 | 359 | e019=42;next 360 | e010=4d;previous 361 | 362 | Custom PS2 Map 363 | 364 | e045=e037 365 | e0ab=0;bogus Fn+F2/F3 366 | 367 | 368 | ProBook-102 369 | 370 | Custom PS2 Map 371 | 372 | e005=0 373 | 374 | Function Keys Special 375 | 376 | ;The following 12 items map Fn+fkeys to fkeys 377 | e05f=3b 378 | e012=3c 379 | e017=3d 380 | e06e=3e 381 | e00a=3f 382 | e009=40 383 | e020=41 384 | e02e=42 385 | e030=43 386 | e010=44 387 | e022=57 388 | e019=58 389 | ;The following 12 items map fkeys to Fn+fkeys 390 | 3b=e05f 391 | 3c=e012 392 | 3d=e017 393 | 3e=e06e 394 | 3f=e00a 395 | 40=e009 396 | 41=e020 397 | 42=e02e 398 | 43=e030 399 | 44=e010 400 | 57=e022 401 | 58=e019 402 | 403 | Function Keys Standard 404 | 405 | ;The following 12 items map Fn+fkeys to Fn+fkeys 406 | e05f=e05f 407 | e012=e012 408 | e017=e017 409 | e06e=e06e 410 | e00a=e00a 411 | e009=e009 412 | e020=e020 413 | e02e=e02e 414 | e030=e030 415 | e010=e010 416 | e022=e022 417 | e019=e019 418 | ;The following 12 items map fkeys to fkeys 419 | 3b=3b 420 | 3c=3c 421 | 3d=3d 422 | 3e=3e 423 | 3f=3f 424 | 40=40 425 | 41=41 426 | 42=42 427 | 43=43 428 | 44=44 429 | 57=57 430 | 58=58 431 | 432 | SleepPressTime 433 | 3000 434 | 435 | ProBook-87 436 | 437 | Custom ADB Map 438 | 439 | 46=4d;scroll => Previous-track 440 | e045=34;pause => Play-Pause 441 | e052=42;insert => Next-track 442 | e046=92;break => Eject 443 | 444 | Custom PS2 Map 445 | 446 | e005=0 447 | 448 | Function Keys Special 449 | 450 | ;The following 8 items map Fn+fkeys to fkeys 451 | e05f=3d 452 | e06e=3e 453 | e02e=40 454 | e030=41 455 | e009=42 456 | e012=43 457 | e017=44 458 | e033=57 459 | ;The following 8 items map fkeys to Fn+fkeys 460 | 3d=e05f 461 | 3e=e06e 462 | 40=e02e 463 | 41=e030 464 | 42=e037 465 | 43=e012 466 | 44=e017 467 | 468 | Function Keys Standard 469 | 470 | ;The following 8 items map Fn+fkeys to Fn+fkeys 471 | e05f=e05f 472 | e06e=e06e 473 | e02e=e02e 474 | e030=e030 475 | e009=e009 476 | e012=e012 477 | e017=e017 478 | e033=e033 479 | ;The following 8 items map fkeys to fkeys 480 | 3d=3d 481 | 3e=3e 482 | 40=40 483 | 41=41 484 | 42=42 485 | 43=43 486 | 44=44 487 | 488 | SleepPressTime 489 | 3000 490 | 491 | 492 | Intel 493 | 494 | CALPELLA 495 | SamsungKeys 496 | SamsungKeys 497 | 498 | Breakless PS2 499 | 500 | e003 501 | e002 502 | e004 503 | e020 504 | ;e031 505 | e033 506 | e006 507 | e077 508 | e079 509 | e008 510 | e009 511 | 512 | Custom ADB Map 513 | 514 | e002=70 515 | e006=80 516 | e008=71 (was =90) 517 | e009=6b (was =91) 518 | 519 | Function Keys Special 520 | 521 | ;The following 12 items map Fn+fkeys to fkeys 522 | ;fn+f1 no code 523 | e003=3c 524 | ;fn+f3 weird code 525 | e002=3e 526 | e004=3f 527 | e020=40 528 | e031=41 529 | e033=42 530 | e006=43 531 | ;fn+f10 weird code 532 | ;fn+f11 no code 533 | ;fn+f12 scrolllock 534 | ;The following 12 items map fkeys to Fn+fkeys 535 | ;fn+f1 no code 536 | 3c=e003 537 | ;fn+f3 weird code 538 | 3e=e002 539 | 3f=e004 540 | 40=e020 541 | 41=e031 542 | 42=e033 543 | 43=e006 544 | ;fn+f10 weird code 545 | ;fn+f11 no code 546 | ;fn+f12 scrolllock 547 | 548 | Function Keys Standard 549 | 550 | ;The following 12 items map Fn+fkeys to Fn+fkeys 551 | ;fn+f1 no code 552 | e003=e003 553 | ;fn+f3 weird code 554 | e002=e002 555 | e004=e004 556 | e020=e020 557 | e031=e031 558 | e033=e033 559 | e006=e006 560 | ;fn+f10 weird code 561 | ;fn+f11 no code 562 | ;fn+f12 scrolllock 563 | ;The following 12 items map fkeys to fkeys 564 | 3b=3b 565 | 3c=3c 566 | 3d=3d 567 | 3e=3e 568 | 3f=3f 569 | 40=40 570 | 41=41 571 | 42=42 572 | 43=43 573 | 44=44 574 | 57=57 575 | 58=58 576 | 577 | 578 | 579 | SECCSD 580 | 581 | LH43STAR 582 | SamsungKeys 583 | SamsungKeys 584 | 585 | Breakless PS2 586 | 587 | e020 588 | e02e 589 | e030 590 | 591 | 592 | 593 | 594 | 595 | 596 | OSBundleLibraries 597 | 598 | as.acidanthera.voodoo.driver.PS2Controller 599 | 2.1.3 600 | com.apple.iokit.IOHIDFamily 601 | 1.0.0b1 602 | com.apple.kpi.bsd 603 | 8.0.0 604 | com.apple.kpi.iokit 605 | 8.0.0 606 | com.apple.kpi.libkern 607 | 8.0.0 608 | com.apple.kpi.mach 609 | 8.0.0 610 | com.apple.kpi.unsupported 611 | 8.0.0 612 | 613 | OSBundleRequired 614 | Console 615 | 616 | 617 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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 | 18E226 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 2.1.3, 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.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | OSBundleLibraries 179 | 180 | as.acidanthera.voodoo.driver.PS2Controller 181 | 2.1.3 182 | com.apple.iokit.IOHIDFamily 183 | 1.0.0b1 184 | com.apple.kpi.iokit 185 | 9.0.0 186 | com.apple.kpi.libkern 187 | 9.0.0 188 | com.apple.kpi.mach 189 | 9.0.0 190 | 191 | OSBundleRequired 192 | Console 193 | 194 | 195 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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 | 18E226 7 | CFBundleExecutable 8 | VoodooPS2Trackpad 9 | CFBundleGetInfoString 10 | 2.1.3, 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.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | Native Multitouch Engine 109 | 110 | CFBundleIdentifier 111 | as.acidanthera.voodoo.driver.PS2Trackpad 112 | IOClass 113 | VoodooPS2NativeEngine 114 | IOMatchCategory 115 | VoodooPS2NativeEngine 116 | IOProviderClass 117 | VoodooPS2MultitouchInterface 118 | 119 | Sentelic FSP 120 | 121 | CFBundleIdentifier 122 | as.acidanthera.voodoo.driver.PS2Trackpad 123 | IOClass 124 | ApplePS2SentelicFSP 125 | IOProbeScore 126 | 5500 127 | IOProviderClass 128 | ApplePS2MouseDevice 129 | Platform Profile 130 | 131 | Default 132 | 133 | DisableDevice 134 | 135 | 136 | HPQOEM 137 | 138 | 1411 139 | ProBook 140 | 1619 141 | ProBook 142 | 161C 143 | ProBook 144 | 164F 145 | ProBook 146 | 167C 147 | ProBook 148 | 167E 149 | ProBook 150 | 1680 151 | ProBook 152 | 179B 153 | ProBook 154 | 179C 155 | ProBook 156 | 17A9 157 | ProBook 158 | 17F0 159 | ProBook 160 | 17F3 161 | ProBook 162 | 17F6 163 | ProBook 164 | 1942 165 | ProBook 166 | 1949 167 | ProBook 168 | 198F 169 | ProBook 170 | ProBook 171 | 172 | DisableDevice 173 | 174 | 175 | ProBook-102 176 | ProBook 177 | ProBook-87 178 | ProBook 179 | 180 | 181 | 182 | Synaptics TouchPad 183 | 184 | CFBundleIdentifier 185 | as.acidanthera.voodoo.driver.PS2Trackpad 186 | HIDPointerAccelerationTable 187 | 188 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 189 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 190 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 191 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 192 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 193 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 194 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 195 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 196 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 197 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 198 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 199 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 200 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 201 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 202 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 203 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 204 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 205 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 206 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 207 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA== 208 | 209 | HIDPointerAccelerationType 210 | HIDTrackpadAcceleration 211 | HIDScrollAccelerationTable 212 | 213 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 214 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 215 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 216 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 217 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 218 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 219 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 220 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 221 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 222 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 223 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 224 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 225 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 226 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 227 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 228 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 229 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 230 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 231 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 232 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 233 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 234 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 235 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 236 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 237 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 238 | AAF8JGg= 239 | 240 | HIDScrollAccelerationType 241 | HIDTrackpadScrollAcceleration 242 | IOClass 243 | ApplePS2SynapticsTouchPad 244 | IOProbeScore 245 | 6000 246 | IOProviderClass 247 | ApplePS2MouseDevice 248 | Platform Profile 249 | 250 | Default 251 | 252 | ButtonCount 253 | 3 254 | ClickPadClickTime 255 | 300000000 256 | ClickPadTrackBoth 257 | 258 | Darwin 16+ 259 | 260 | ApplePreferenceCapability 261 | 262 | ApplePreferenceIdentifier 263 | com.apple.AppleMultitouchTrackpad 264 | MT Built-in 265 | 266 | MTHIDDevice 267 | 268 | SupportsGestureScrolling 269 | 270 | TrackpadEmbedded 271 | 272 | TrackpadFourFingerGestures 273 | 274 | TrackpadSecondaryClickCorners 275 | 276 | TrackpadThreeFingerDrag 277 | 278 | 279 | DisableDevice 280 | 281 | DisableLEDUpdating 282 | 283 | DynamicEWMode 284 | 285 | FakeMiddleButton 286 | 287 | FingerChangeIgnoreDeltas 288 | 3 289 | ForceTouchMode 290 | 1 291 | ForceTouchPressureThreshold 292 | 100 293 | MiddleClickTime 294 | 100000000 295 | MouseMiddleScroll 296 | 297 | ProcessBluetoothMouseStopsTrackpad 298 | 299 | ProcessUSBMouseStopsTrackpad 300 | 301 | QuietTimeAfterTyping 302 | 500000000 303 | Resolution 304 | 400 305 | ScrollResolution 306 | 400 307 | SkipPassThrough 308 | 309 | USBMouseStopsTrackpad 310 | 0 311 | UseHighRate 312 | 313 | WakeDelay 314 | 1000 315 | 316 | HPQOEM 317 | 318 | 1411 319 | ProBook 320 | 1619 321 | ProBook 322 | 161C 323 | ProBook 324 | 164F 325 | ProBook 326 | 167C 327 | ProBook 328 | 167E 329 | ProBook 330 | 1680 331 | ProBook 332 | 179B 333 | ProBook 334 | 179C 335 | ProBook 336 | 17A9 337 | ProBook 338 | 17F0 339 | ProBook 340 | 17F3 341 | ProBook 342 | 17F6 343 | ProBook 344 | 1942 345 | ProBook 346 | 1949 347 | ProBook 348 | 198F 349 | ProBook 350 | ProBook 351 | 352 | FingerZ 353 | 40 354 | 355 | ProBook-102 356 | ProBook 357 | ProBook-87 358 | ProBook 359 | 360 | LENOVO 361 | 362 | T420 363 | Thinkpad_TrackPad 364 | T460 365 | Thinkpad_ClickPad 366 | T560 367 | Thinkpad_ClickPad 368 | Thinkpad_ClickPad 369 | 370 | DynamicEWMode 371 | 372 | EdgeBottom 373 | 0 374 | FakeMiddleButton 375 | 376 | FingerZ 377 | 30 378 | HWResetOnStart 379 | 380 | MaxTapTime 381 | 100000000 382 | MouseMultiplierX 383 | 2 384 | MouseMultiplierY 385 | 2 386 | MouseScrollMultiplierX 387 | 2 388 | MouseScrollMultiplierY 389 | 2 390 | PalmNoAction When Typing 391 | 392 | ScrollResolution 393 | 800 394 | Thinkpad 395 | 396 | 397 | Thinkpad_TrackPad 398 | 399 | DynamicEWMode 400 | 401 | FakeMiddleButton 402 | 403 | FingerZ 404 | 47 405 | HWResetOnStart 406 | 407 | MaxTapTime 408 | 100000000 409 | PalmNoAction When Typing 410 | 411 | Resolution 412 | 3200 413 | ScrollResolution 414 | 800 415 | SmoothInput 416 | 417 | Thinkpad 418 | 419 | UnsmoothInput 420 | 421 | 422 | X1CG3 423 | Thinkpad_ClickPad 424 | 425 | 426 | ProductID 427 | 547 428 | RM,deliverNotifications 429 | 430 | VendorID 431 | 1452 432 | 433 | 434 | OSBundleLibraries 435 | 436 | as.acidanthera.voodoo.driver.PS2Controller 437 | 2.1.3 438 | com.apple.iokit.IOHIDFamily 439 | 1.0.0b1 440 | com.apple.kpi.iokit 441 | 9.0.0 442 | com.apple.kpi.libkern 443 | 9.0.0 444 | com.apple.kpi.mach 445 | 9.0.0 446 | 447 | OSBundleRequired 448 | Console 449 | 450 | 451 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/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 | 18E226 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.2 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.4.2 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 10E1001 33 | DTPlatformVersion 34 | GM 35 | DTSDKBuild 36 | 18E219 37 | DTSDKName 38 | macosx10.14 39 | DTXcode 40 | 1020 41 | DTXcodeBuild 42 | 10E1001 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 | NSHumanReadableCopyright 77 | Copyright © 2018 vit9696. All rights reserved. 78 | OSBundleCompatibleVersion 79 | 1.0 80 | OSBundleLibraries 81 | 82 | as.vit9696.Lilu 83 | 1.2.0 84 | com.apple.iokit.IOPCIFamily 85 | 1.0.0b1 86 | com.apple.kpi.bsd 87 | 12.0.0 88 | com.apple.kpi.dsep 89 | 12.0.0 90 | com.apple.kpi.iokit 91 | 12.0.0 92 | com.apple.kpi.libkern 93 | 12.0.0 94 | com.apple.kpi.mach 95 | 12.0.0 96 | com.apple.kpi.unsupported 97 | 12.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /EFI/OC/OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/OpenCore.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/OpenShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Tools/OpenShell.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/VerifyMsrE2.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Tools/VerifyMsrE2.efi -------------------------------------------------------------------------------- /EFI/OC/Tools/modGRUBShell.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/EFI/OC/Tools/modGRUBShell.efi -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 zachs78 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /OpenCore-Catalina-XPS-17-9700.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocd0711/MacOS-XPS-9700-OpenCore/91bef74c13206095afcad4bf1b06a899483a5b26/OpenCore-Catalina-XPS-17-9700.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 由于扬声器无法解决问题, 短期内将不会更新 2 | 3 | # Dell XPS 9700 macOS X 4 | 5 | 这是使用 OpenCore 制作的 EFI, 可以在 Dell XPS 17 9700(2020) 上安装 macOS X Catalina. 6 | 7 | OpenCore Version: 0.6.2 8 | 9 | macOS Version: Catalina 10.15.7 10 | 11 | ![](OpenCore-Catalina-XPS-17-9700.jpg) 12 | 13 | --- 14 | 15 | ## 功能状态 16 | 17 | |功能 / 硬件|状态| 18 | |-|-| 19 | |核显 UHD630 |已驱动| 20 | |CPU 电源管理|正常工作 - 空闲800MHz, 最高至睿频| 21 | |内置键盘|已驱动| 22 | |内置触摸板/触摸板手势|已驱动/正常| 23 | |耳机孔|未驱动| 24 | |声卡|未驱动| 25 | |麦克风|未驱动| 26 | |声音快捷键(FN键)|正常工作| 27 | |USB 3.x|Working| 28 | |USB 2.0|Working| 29 | |指纹识别模块|未驱动| 30 | |SD卡插槽|未驱动| 31 | |屏幕亮度|正常驱动可以调节亮度(快捷键未映射)| 32 | |wifi模块(AX1650S)|已驱动| 33 | |蓝牙|已驱动| 34 | |外接扩展坞的网卡|貌似全部无法使用(我自己是这样)| 35 | |扩展坞上其他功能(除网卡)|正常| 36 | |内置摄像头|已驱动| 37 | |睡眠|dell xps 17 9700 无法开启 s3 睡眠, 目前无法睡眠| 38 | 39 | --- 40 | 41 | ## BIOS 设置 42 | 43 | 关闭以下选项 44 | - Touchscreen (如果有触摸屏的话必须关闭, 否则触摸板无法使用) 45 | - Secure boot 46 | - Disable CFG Lock (via modGRUBShell) 47 | 48 | --- 49 | 50 | ## 重要 51 | 52 | Dell XPS 17 9700 部分机型配的固态为海力士 PC611 无法在 macOS 上驱动且不屏蔽会无法进入系统/安装界面, 可在bios内屏蔽 53 | 54 | --- 55 | 56 | ## 关闭 CFG LOCK 57 | 58 | 此方法仅适用于 Dell XPS 17 9700 59 | 60 | 启动时在 OpenCore 引导页选择 modGRUBShell 61 | 在 grub 下输入以下命令, 第一行解锁 CFG LOCK, 第二行解锁超频 62 | 63 | ``` 64 | setup_var CpuSetup 0x3e 0x0 65 | setup_var CpuSetup 0xda 0x0 66 | exit 67 | ``` 68 | 69 | 重启进入 bios 选择重新加载用户配置. 可以在 VerifyMSR2 检查 CFG LOCK 是否已解锁 70 | 71 | 如果更新/刷 bios 后需要重复上面的步骤 72 | 73 | --- 74 | 75 | ## 关于睡眠的问题 76 | 77 | 进入系统后执行: sudo pmset -a disablesleep 1 78 | 79 | --- 80 | 81 | ## 声卡/耳机孔 82 | 83 | 目前正在尝试处理, 有进展会更新 --------------------------------------------------------------------------------