From 0797deb6747ee9c5d385bc0119ae70a23f585b22 Mon Sep 17 00:00:00 2001 From: Mqdd Date: Sun, 11 Jan 2026 02:21:42 +0700 Subject: Add Boot OC --- .../VoodooPS2Controller.kext/Contents/Info.plist | 161 ++++++ .../Contents/MacOS/VoodooPS2Controller | Bin 0 -> 102472 bytes .../PlugIns/VoodooInput.kext/Contents/Info.plist | 80 +++ .../VoodooInput.kext/Contents/MacOS/VoodooInput | Bin 0 -> 108320 bytes .../Contents/_CodeSignature/CodeResources | 115 ++++ .../VoodooPS2Keyboard.kext/Contents/Info.plist | 620 +++++++++++++++++++++ .../Contents/MacOS/VoodooPS2Keyboard | Bin 0 -> 50344 bytes .../VoodooPS2Mouse.kext/Contents/Info.plist | 107 ++++ .../Contents/MacOS/VoodooPS2Mouse | Bin 0 -> 35792 bytes .../VoodooPS2Trackpad.kext/Contents/Info.plist | 458 +++++++++++++++ .../Contents/MacOS/VoodooPS2Trackpad | Bin 0 -> 152704 bytes 11 files changed, 1541 insertions(+) create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/Info.plist create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist create mode 100755 oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad (limited to 'oc/Kexts/VoodooPS2Controller.kext') diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/Info.plist b/oc/Kexts/VoodooPS2Controller.kext/Contents/Info.plist new file mode 100755 index 0000000..5e95bda --- /dev/null +++ b/oc/Kexts/VoodooPS2Controller.kext/Contents/Info.plist @@ -0,0 +1,161 @@ + + + + + BuildMachineOSBuild + 23H222 + CFBundleExecutable + VoodooPS2Controller + CFBundleGetInfoString + 2.3.7, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Controller + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Voodoo PS/2 Controller + CFBundlePackageType + KEXT + CFBundleShortVersionString + 2.3.7 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 2.3.7 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + + DTPlatformName + macosx + DTPlatformVersion + 14.2 + DTSDKBuild + 23C53 + DTSDKName + macosx14.2 + DTXcode + 1520 + DTXcodeBuild + 15C500b + IOKitPersonalities + + ACPI PS/2 Nub + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Controller + FindMouseDelay + 100 + IOClass + AppleACPIPS2Nub + IONameMatch + + PNP0303 + PNP030B + PNP0320 + + IOProviderClass + IOACPIPlatformDevice + MouseNameMatch + + PNP0F03 + PNP0F0B + PNP0F0E + PNP0F13 + + + ApplePS2Controller + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Controller + IOClass + ApplePS2Controller + IONameMatch + ps2controller + IOProviderClass + IOPlatformDevice + Platform Profile + + Default + + MouseWakeFirst + + WakeDelay + 10 + + HPQOEM + + 1411 + ProBook + 1619 + ProBook + 161C + ProBook + 164F + ProBook + 167C + ProBook + 167E + ProBook + 1680 + ProBook + 179B + ProBook + 179C + ProBook + 17A9 + ProBook + 17F0 + ProBook + 17F3 + ProBook + 17F6 + ProBook + 1942 + ProBook + 1949 + ProBook + 198F + ProBook + ProBook + + WakeDelay + 0 + + ProBook-102 + ProBook + ProBook-87 + ProBook + + + RM,deliverNotifications + + + + LSMinimumSystemVersion + 10.10 + OSBundleCompatibleVersion + 2.3.7 + OSBundleLibraries + + com.apple.iokit.IOACPIFamily + 1.0.0d1 + com.apple.kpi.bsd + 8.0.0 + com.apple.kpi.iokit + 8.0.0 + com.apple.kpi.libkern + 8.0.0 + com.apple.kpi.mach + 8.0.0 + com.apple.kpi.unsupported + 8.0.0 + + OSBundleRequired + Console + + diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller b/oc/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller new file mode 100755 index 0000000..54dbb69 Binary files /dev/null and b/oc/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller differ diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist new file mode 100755 index 0000000..5e1fdfc --- /dev/null +++ b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist @@ -0,0 +1,80 @@ + + + + + BuildMachineOSBuild + 23H222 + CFBundleDevelopmentRegion + en + CFBundleExecutable + VoodooInput + CFBundleIdentifier + me.kishorprins.VoodooInput + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + VoodooInput + CFBundlePackageType + KEXT + CFBundleShortVersionString + 1.1.6 + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 1.1.6 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + + DTPlatformName + macosx + DTPlatformVersion + 14.2 + DTSDKBuild + 23C53 + DTSDKName + macosx14.2 + DTXcode + 1520 + DTXcodeBuild + 15C500b + IOKitPersonalities + + Voodoo Input + + CFBundleIdentifier + me.kishorprins.VoodooInput + IOClass + VoodooInput + IOProbeScore + 200 + IOPropertyMatch + + VoodooInputSupported + + + IOProviderClass + IOService + + + LSMinimumSystemVersion + 10.10 + NSHumanReadableCopyright + Copyright © 2019 Kishor Prins. All rights reserved. + OSBundleLibraries + + com.apple.iokit.IOHIDFamily + 2.0 + com.apple.kpi.iokit + 14 + com.apple.kpi.libkern + 14 + com.apple.kpi.mach + 13.0 + + OSBundleRequired + Root + + diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput new file mode 100755 index 0000000..48d8252 Binary files /dev/null and b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput differ diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources new file mode 100755 index 0000000..d5d0fd7 --- /dev/null +++ b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,115 @@ + + + + + files + + files2 + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist new file mode 100755 index 0000000..f36770e --- /dev/null +++ b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/Info.plist @@ -0,0 +1,620 @@ + + + + + BuildMachineOSBuild + 23H222 + CFBundleExecutable + VoodooPS2Keyboard + CFBundleGetInfoString + 2.3.7, Copyright Apple Computer, Inc. 2000-2003, RehabMan 2012-2013 + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Keyboard + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Voodoo PS/2 Keyboard + CFBundlePackageType + KEXT + CFBundleShortVersionString + 2.3.7 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 2.3.7 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + + DTPlatformName + macosx + DTPlatformVersion + 14.2 + DTSDKBuild + 23C53 + DTSDKName + macosx14.2 + DTXcode + 1520 + DTXcodeBuild + 15C500b + IOKitPersonalities + + ApplePS2Keyboard + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Keyboard + IOClass + ApplePS2Keyboard + IOProviderClass + ApplePS2KeyboardDevice + Platform Profile + + DELL + + Dell-Keys + + Breakless PS2 + + e005 + e006 + + Function Keys Special + + ;The following 12 items map Fn+fkeys to fkeys + e020=3b + e02e=3c + e030=3d + e022=3e + ;Fn+f5 macro + ;Fn+f6 macro + ;Fn+f7 macro + ;Fn+f8 macro + ;Fn+f9 macro + ;Fn+f10 no code + e005=57 + e006=58 + ;The following 12 items map fkeys to Fn+fkeys + 3b=e020 + 3c=e02e + 3d=e030 + 3e=e022 + ;Fn+f5 macro + ;Fn+f6 macro + ;Fn+f7 macro + ;Fn+f8 macro + ;Fn+f9 macro + ;Fn+f10 no code + 57=e005 + 58=e006 + + Function Keys Standard + + ;The following 12 items map Fn+fkeys to Fn+fkeys + e020=e020 + e02e=e02e + e030=e030 + e022=e022 + ;Fn+f5 macro + ;Fn+f6 macro + ;Fn+f7 macro + ;Fn+f8 macro + ;Fn+f9 macro + ;Fn+f10 no code + e005=e005 + e006=e006 + ;The following 12 items map fkeys to fkeys + 3b=3b + 3c=3c + 3d=3d + 3e=3e + 3f=3f + 40=40 + 41=41 + 42=42 + 43=43 + 44=44 + 57=57 + 58=58 + + + HSW-LPT + Dell-Keys + SNB-CPT + + ActionSwipeDown + 63 d, 63 u + ActionSwipeUp + 61 d, 61 u + Breakless PS2 + + e01e;Touchpad Fn+f3 is breakless + e06e;REVIEW: temporary for case that macro inversion does not work... + + Custom ADB Map + + e009=83;Dell Support to Launchpad + e0f1=71;Call brightens up w RKA1 for special mode (was =90) + e0f2=6b;Call brightens down w RKA2 for special mode (was =91) + e06e=70;Map vidmirror key for special mode default is adb90 + + Custom PS2 Map + + e01e=e037;Map tp disable to Fn+f3 + e037=e01e;Prevent PrntScr from triggering tp disable + + Function Keys Special + + ;The following 12 items map Fn+fkeys to fkeys + e06e=3b + e008=3c + e01e=3d + e005=3e + e006=3f + e00c=40 + ;Fn+f7 no dedicated macro + e010=42 + e022=43 + e019=44 + e02e=57 + e030=58 + ;The following 12 items map fkeys to Fn+fkeys + 3b=e06e;Map vidmirror key to f1 + 3c=e0f0;Map radio toggle action from EC query to f2 + 3d=e037;Map touchpad toggle button to f3 + 3e=e0f2;Map acpi RKA2 to f4 brightness down + 3f=e0f1;Map acpi RKA1 to f5 brightness up + 40=e0f3;Map acpi RKA3 to f6 keyboard backlight + ;Fn+f7 no macro + 42=e010 + 43=e022 + 44=e019 + 57=e02e + 58=e030 + + Function Keys Standard + + ;The following 12 items map Fn+fkeys to Fn+fkeys + e06e=e06e;Fn+f1 macro translated + e008=e008;Fn+f2 regular scancode and EC query call q8c + e01e=e037;Fn+f3 regular scancode and EC controls LED + e005=e005;Fn+f4 no ps2scancode and EC query call q81 + e006=e006;Fn+f5 no ps2scancode and EC query call q80 + e00c=e00c;Fn+f6 no ps2scancode and EC query call q8a + ;Fn+f7 no macro just regular f key + e010=e010; Fn+f8 regular scancode + e022=e022; Fn+f9 regular scancode + e019=e019;Fn+f10 regular scancode + e02e=e02e;Fn+f11 regular scancode + e030=e030;Fn+f12 regular scancode + ;Fn+f13 is mute dedicated button that always produces e020 regardless of Fn + ;The following 12 items map fkeys to fkeys + 3b=3b + 3c=3c + 3d=3d + 3e=3e + 3f=3f + 40=40 + 41=41 + 42=42 + 43=43 + 44=44 + 57=57 + 58=58 + + Macro Inversion + + ;This section maps ps2 codes (packet format) received quickly (macros) into fake ps2 codes (packet format) + ;Fn+F1 + + //8CbgAAAAACWwEZ + + + //8C7gAAAAAC2wGZ + + + //8C7gAAAAABmQLb + + + MaximumMacroTime + 35000000 + Note-Author + TimeWalker aka TimeWalker75a + Note-Comment + Keyboard Profile for DELL SandyBridge SecureCore Tiano based laptops (Vostro 3450 & 3750, Inspiron N4110, XPS L502x & L702x & L511z) + + WN09 + + Breakless PS2 + + e01b + e008 + e01e + e005 + e06e + e006 + + Custom ADB Map + + e01b=70 + e06e=83 + + Custom PS2 Map + + 56=2b + 29=56 + 2b=29 + e01e=e037 + e037=e01e + + + WN09a + + Breakless PS2 + + e01b + e008 + e01e + e005 + e06e + e006 + + Custom ADB Map + + e01b=70 + e06e=83 + + Custom PS2 Map + + e01e=e037 + e037=e01e + + + + Default + + Breakless PS2 + + ;Items must be strings in the form of breaklessscan (in hex) + + Custom ADB Map + + ;Items must be strings in the form of scanfrom=adbto (in hex) + + Custom PS2 Map + + ;Items must be strings in the form of scanfrom=scanto (in hex) + e027=0;disable discrete fnkeys toggle + e028=0;disable discrete trackpad toggle + + HIDF12EjectDelay + 250 + LogScanCodes + 0 + Make Application key into Apple Fn key + + Make Application key into right windows + + Make right modifier keys into Hangul and Hanja + + SleepPressTime + 0 + Swap capslock and left control + + Swap command and option + + Use ISO layout keyboard + + alt_handler_id + 3 + + HPQOEM + + 1411 + ProBook-102;ProBook 4520s + 1619 + ProBook-87;ProBook 6560b + 161C + ProBook-87;ProBook 8460p + 164F + ProBook-87;ProBook 5330m + 167C + ProBook-102;ProBook 4530s + 167E + ProBook-102;ProBook 4330s + 1680 + ProBook-102;ProBook 4230s + 179B + ProBook-87;ProBook 6470b + 179C + ProBook-87;ProBook 6470b + 17A9 + ProBook-87;ProBook 8570b + 17F0 + ProBook-102;ProBook 4340s + 17F3 + ProBook-102;ProBook 4440s + 17F6 + ProBook-102;ProBook 4540s + 1942 + ProBook-87;ProBook 450s G1 + 1949 + ProBook-87;ProBook 450s G1 + 1962 + Haswell-Envy;HP Envy 15-j063cl + 1963 + Haswell-Envy;HP Envy 15-j063cl + 1965 + Haswell-Envy;HP Envy 17t-j100 + 1966 + Haswell-Envy;HP Envy 17t-j000 + 198F + ProBook-87;ProBook 450s G0 + Haswell-Envy + + Custom ADB Map + + e019=42;next + e010=4d;previous + + Custom PS2 Map + + e045=e037 + e0ab=0;bogus Fn+F2/F3 + + + ProBook-102 + + Custom PS2 Map + + e005=0 + + Function Keys Special + + ;The following 12 items map Fn+fkeys to fkeys + e05f=3b + e012=3c + e017=3d + e06e=3e + e00a=3f + e009=40 + e020=41 + e02e=42 + e030=43 + e010=44 + e022=57 + e019=58 + ;The following 12 items map fkeys to Fn+fkeys + 3b=e05f + 3c=e012 + 3d=e017 + 3e=e06e + 3f=e00a + 40=e009 + 41=e020 + 42=e02e + 43=e030 + 44=e010 + 57=e022 + 58=e019 + + Function Keys Standard + + ;The following 12 items map Fn+fkeys to Fn+fkeys + e05f=e05f + e012=e012 + e017=e017 + e06e=e06e + e00a=e00a + e009=e009 + e020=e020 + e02e=e02e + e030=e030 + e010=e010 + e022=e022 + e019=e019 + ;The following 12 items map fkeys to fkeys + 3b=3b + 3c=3c + 3d=3d + 3e=3e + 3f=3f + 40=40 + 41=41 + 42=42 + 43=43 + 44=44 + 57=57 + 58=58 + + SleepPressTime + 3000 + + ProBook-87 + + Custom ADB Map + + 46=4d;scroll => Previous-track + e045=34;pause => Play-Pause + e052=42;insert => Next-track + e046=92;break => Eject + + Custom PS2 Map + + e005=0 + + Function Keys Special + + ;The following 8 items map Fn+fkeys to fkeys + e05f=3d + e06e=3e + e02e=40 + e030=41 + e009=42 + e012=43 + e017=44 + e033=57 + ;The following 8 items map fkeys to Fn+fkeys + 3d=e05f + 3e=e06e + 40=e02e + 41=e030 + 42=e037 + 43=e012 + 44=e017 + + Function Keys Standard + + ;The following 8 items map Fn+fkeys to Fn+fkeys + e05f=e05f + e06e=e06e + e02e=e02e + e030=e030 + e009=e009 + e012=e012 + e017=e017 + e033=e033 + ;The following 8 items map fkeys to fkeys + 3d=3d + 3e=3e + 40=40 + 41=41 + 42=42 + 43=43 + 44=44 + + SleepPressTime + 3000 + + + Intel + + CALPELLA + SamsungKeys + SamsungKeys + + Breakless PS2 + + e003 + e002 + e004 + e020 + ;e031 + e033 + e006 + e077 + e079 + e008 + e009 + + Custom ADB Map + + e002=70 + e006=80 + e008=71 (was =90) + e009=6b (was =91) + + Function Keys Special + + ;The following 12 items map Fn+fkeys to fkeys + ;fn+f1 no code + e003=3c + ;fn+f3 weird code + e002=3e + e004=3f + e020=40 + e031=41 + e033=42 + e006=43 + ;fn+f10 weird code + ;fn+f11 no code + ;fn+f12 scrolllock + ;The following 12 items map fkeys to Fn+fkeys + ;fn+f1 no code + 3c=e003 + ;fn+f3 weird code + 3e=e002 + 3f=e004 + 40=e020 + 41=e031 + 42=e033 + 43=e006 + ;fn+f10 weird code + ;fn+f11 no code + ;fn+f12 scrolllock + + Function Keys Standard + + ;The following 12 items map Fn+fkeys to Fn+fkeys + ;fn+f1 no code + e003=e003 + ;fn+f3 weird code + e002=e002 + e004=e004 + e020=e020 + e031=e031 + e033=e033 + e006=e006 + ;fn+f10 weird code + ;fn+f11 no code + ;fn+f12 scrolllock + ;The following 12 items map fkeys to fkeys + 3b=3b + 3c=3c + 3d=3d + 3e=3e + 3f=3f + 40=40 + 41=41 + 42=42 + 43=43 + 44=44 + 57=57 + 58=58 + + + + SECCSD + + LH43STAR + SamsungKeys + SamsungKeys + + Breakless PS2 + + e020 + e02e + e030 + + + + + + + LSMinimumSystemVersion + 10.10 + OSBundleLibraries + + as.acidanthera.voodoo.driver.PS2Controller + 2.3.7 + com.apple.iokit.IOHIDFamily + 1.0.0b1 + com.apple.kpi.bsd + 8.0.0 + com.apple.kpi.iokit + 8.0.0 + com.apple.kpi.libkern + 8.0.0 + com.apple.kpi.mach + 8.0.0 + com.apple.kpi.unsupported + 8.0.0 + + OSBundleRequired + Console + + diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard new file mode 100755 index 0000000..b1804cc Binary files /dev/null and b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard differ diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist new file mode 100755 index 0000000..27fff91 --- /dev/null +++ b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist @@ -0,0 +1,107 @@ + + + + + BuildMachineOSBuild + 23H222 + CFBundleExecutable + VoodooPS2Mouse + CFBundleGetInfoString + 2.3.7, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Mouse + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Voodoo PS/2 Mouse + CFBundlePackageType + KEXT + CFBundleShortVersionString + 2.3.7 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 2.3.7 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + + DTPlatformName + macosx + DTPlatformVersion + 14.2 + DTSDKBuild + 23C53 + DTSDKName + macosx14.2 + DTXcode + 1520 + DTXcodeBuild + 15C500b + IOKitPersonalities + + ApplePS2Mouse + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Mouse + IOClass + ApplePS2Mouse + IOProviderClass + ApplePS2MouseDevice + Platform Profile + + Default + + ButtonCount + 3 + DefaultResolution + 240 + DisableDevice + + FakeMiddleButton + + ForceDefaultResolution + + ForceSetResolution + + MiddleClickTime + 100000000 + MouseCount + 0 + MouseYInverter + 1 + ResolutionMode + 3 + ScrollResolution + 5 + ScrollYInverter + 1 + WakeDelay + 1000 + + + + + LSMinimumSystemVersion + 10.10 + OSBundleLibraries + + as.acidanthera.voodoo.driver.PS2Controller + 2.3.7 + com.apple.iokit.IOHIDFamily + 1.0.0b1 + com.apple.kpi.iokit + 9.0.0 + com.apple.kpi.libkern + 9.0.0 + com.apple.kpi.mach + 9.0.0 + + OSBundleRequired + Console + + diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse new file mode 100755 index 0000000..3557f89 Binary files /dev/null and b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse differ diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist new file mode 100755 index 0000000..11afa88 --- /dev/null +++ b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist @@ -0,0 +1,458 @@ + + + + + BuildMachineOSBuild + 23H222 + CFBundleExecutable + VoodooPS2Trackpad + CFBundleGetInfoString + 2.3.7, Copyright Apple Computer, Inc. 2002-2003, mackerintel 2008, RehabMan 2012-2013 + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Trackpad + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Voodoo PS/2 Trackpad + CFBundlePackageType + KEXT + CFBundleShortVersionString + 2.3.7 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 2.3.7 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + + DTPlatformName + macosx + DTPlatformVersion + 14.2 + DTSDKBuild + 23C53 + DTSDKName + macosx14.2 + DTXcode + 1520 + DTXcodeBuild + 15C500b + IOKitPersonalities + + ALPS GlidePoint + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Trackpad + IOClass + ApplePS2ALPSGlidePoint + IOProbeScore + 1500 + IOProviderClass + ApplePS2MouseDevice + Platform Profile + + Default + + Darwin 16+ + + ApplePreferenceCapability + + ApplePreferenceIdentifier + com.apple.AppleMultitouchTrackpad + MT Built-in + + MTHIDDevice + + SupportsGestureScrolling + + TrackpadEmbedded + + TrackpadFourFingerGestures + + TrackpadSecondaryClickCorners + + TrackpadThreeFingerDrag + + + DisableDevice + + DragLockTempMask + 1048592 + FingerZ + 1 + ForceTouchCustomDownThreshold + 90 + ForceTouchCustomPower + 8 + ForceTouchCustomUpThreshold + 20 + ForceTouchMode + 0 + ForceTouchPressureThreshold + 100 + ProcessBluetoothMouseStopsTrackpad + + ProcessUSBMouseStopsTrackpad + + QuietTimeAfterTyping + 100000000 + USBMouseStopsTrackpad + 0 + UnitsPerMMX + 50 + UnitsPerMMY + 50 + WakeDelay + 1000 + + HPQOEM + + 1411 + ProBook + 1619 + ProBook + 161C + ProBook + 164F + ProBook + 167C + ProBook + 167E + ProBook + 1680 + ProBook + 179B + ProBook + 179C + ProBook + 17A9 + ProBook + 17F0 + ProBook + 17F3 + ProBook + 17F6 + ProBook + 1942 + ProBook + 1949 + ProBook + 198F + ProBook + ProBook + + DisableDevice + + + ProBook-102 + ProBook + ProBook-87 + ProBook + + + ProductID + 547 + RM,deliverNotifications + + VendorID + 1452 + + Elantech TouchPad + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Trackpad + IOClass + ApplePS2Elan + IOProbeScore + 7000 + IOProviderClass + ApplePS2MouseDevice + Platform Profile + + Default + + ButtonCount + 3 + Darwin 16+ + + ApplePreferenceCapability + + ApplePreferenceIdentifier + com.apple.AppleMultitouchTrackpad + MT Built-in + + MTHIDDevice + + SupportsGestureScrolling + + TrackpadEmbedded + + TrackpadFourFingerGestures + + TrackpadSecondaryClickCorners + + TrackpadThreeFingerDrag + + + DisableDevice + + ForceTouchMode + 1 + MouseResolution + 3 + MouseSampleRate + 200 + ProcessBluetoothMouseStopsTrackpad + + ProcessUSBMouseStopsTrackpad + + QuietTimeAfterTyping + 500000000 + ScrollResolution + 400 + SetHwResolution + + TrackpointDividerX + 120 + TrackpointDividerY + 120 + TrackpointMultiplierX + 120 + TrackpointMultiplierY + 120 + USBMouseStopsTrackpad + 0 + UseHighRate + + WakeDelay + 1000 + + + RM,deliverNotifications + + + Native Multitouch Engine + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Trackpad + IOClass + VoodooPS2NativeEngine + IOMatchCategory + VoodooPS2NativeEngine + IOProviderClass + VoodooPS2MultitouchInterface + + Sentelic FSP + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Trackpad + IOClass + ApplePS2SentelicFSP + IOProbeScore + 5500 + IOProviderClass + ApplePS2MouseDevice + Platform Profile + + Default + + DisableDevice + + + HPQOEM + + 1411 + ProBook + 1619 + ProBook + 161C + ProBook + 164F + ProBook + 167C + ProBook + 167E + ProBook + 1680 + ProBook + 179B + ProBook + 179C + ProBook + 17A9 + ProBook + 17F0 + ProBook + 17F3 + ProBook + 17F6 + ProBook + 1942 + ProBook + 1949 + ProBook + 198F + ProBook + ProBook + + DisableDevice + + + ProBook-102 + ProBook + ProBook-87 + ProBook + + + + Synaptics TouchPad + + CFBundleIdentifier + as.acidanthera.voodoo.driver.PS2Trackpad + IOClass + ApplePS2SynapticsTouchPad + IOProbeScore + 6000 + IOProviderClass + ApplePS2MouseDevice + Platform Profile + + Default + + DisableDevice + + DisableLEDUpdating + + ForceTouchCustomDownThreshold + 90 + ForceTouchCustomPower + 8 + ForceTouchCustomUpThreshold + 20 + ForceTouchPressureThreshold + 100 + ProcessBluetoothMouseStopsTrackpad + + ProcessUSBMouseStopsTrackpad + + QuietTimeAfterTyping + 500000000 + SkipPassThrough + + TrackpointDeadzone + 1 + USBMouseStopsTrackpad + 0 + WakeDelay + 1000 + + HPQOEM + + 1411 + ProBook + 1619 + ProBook + 161C + ProBook + 164F + ProBook + 167C + ProBook + 167E + ProBook + 1680 + ProBook + 179B + ProBook + 179C + ProBook + 17A9 + ProBook + 17F0 + ProBook + 17F3 + ProBook + 17F6 + ProBook + 1942 + ProBook + 1949 + ProBook + 198F + ProBook + ProBook + + FingerZ + 40 + + ProBook-102 + ProBook + ProBook-87 + ProBook + + LENOVO + + T420 + Thinkpad_TrackPad + T460 + Thinkpad_ClickPad + T560 + Thinkpad_ClickPad + Thinkpad_ClickPad + + FingerZ + 30 + HWResetOnStart + + TrackpointMultiplierX + 2 + TrackpointMultiplierY + 2 + TrackpointScrollMultiplierX + 2 + TrackpointScrollMultiplierY + 2 + + Thinkpad_TrackPad + + FingerZ + 47 + HWResetOnStart + + + X1CG3 + Thinkpad_ClickPad + + + ProductID + 547 + RM,deliverNotifications + + VendorID + 1452 + + + LSMinimumSystemVersion + 10.10 + OSBundleLibraries + + as.acidanthera.voodoo.driver.PS2Controller + 2.3.7 + com.apple.iokit.IOHIDFamily + 1.0.0b1 + com.apple.kpi.iokit + 9.0.0 + com.apple.kpi.libkern + 9.0.0 + com.apple.kpi.mach + 9.0.0 + + OSBundleRequired + Console + + diff --git a/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad new file mode 100755 index 0000000..6ca3bcd Binary files /dev/null and b/oc/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad differ -- cgit v1.2.3