-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Kexts And Fix Battery State And Add Wifi Menu Support
- Loading branch information
Showing
23 changed files
with
372 additions
and
54 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
115 changes: 115 additions & 0 deletions
115
EFI/OC/Kexts/ACPIBatteryManager.kext/Contents/Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>BuildMachineOSBuild</key> | ||
<string>18A391</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>ACPIBatteryManager</string> | ||
<key>CFBundleGetInfoString</key> | ||
<string>1.90.1, Copyright 2011 Apple Inc., RehabMan 2012</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.rehabman.driver.AppleSmartBatteryManager</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>ACPIBatteryManager</string> | ||
<key>CFBundlePackageType</key> | ||
<string>KEXT</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.90.1</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>MacOSX</string> | ||
</array> | ||
<key>CFBundleVersion</key> | ||
<string>1.90.1</string> | ||
<key>DTCompiler</key> | ||
<string>com.apple.compilers.llvm.clang.1_0</string> | ||
<key>DTPlatformBuild</key> | ||
<string>9F2000</string> | ||
<key>DTPlatformVersion</key> | ||
<string>GM</string> | ||
<key>DTSDKBuild</key> | ||
<string>12D75</string> | ||
<key>DTSDKName</key> | ||
<string>macosx10.8</string> | ||
<key>DTXcode</key> | ||
<string>0941</string> | ||
<key>DTXcodeBuild</key> | ||
<string>9F2000</string> | ||
<key>IOKitPersonalities</key> | ||
<dict> | ||
<key>ACPI AC Adapter</key> | ||
<dict> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.rehabman.driver.AppleSmartBatteryManager</string> | ||
<key>IOClass</key> | ||
<string>ACPIACAdapter</string> | ||
<key>IONameMatch</key> | ||
<string>ACPI0003</string> | ||
<key>IOProbeScore</key> | ||
<integer>1000</integer> | ||
<key>IOProviderClass</key> | ||
<string>IOACPIPlatformDevice</string> | ||
</dict> | ||
<key>ACPI Battery Manager</key> | ||
<dict> | ||
<key>CFBundleIdentifier</key> | ||
<string>org.rehabman.driver.AppleSmartBatteryManager</string> | ||
<key>Configuration</key> | ||
<dict> | ||
<key>Correct16bitSignedCurrentRate</key> | ||
<true/> | ||
<key>CorrectCorruptCapacities</key> | ||
<true/> | ||
<key>CurrentDischargeRateMax</key> | ||
<integer>20000</integer> | ||
<key>EstimateCycleCountDivisor</key> | ||
<integer>6</integer> | ||
<key>FirstPollDelay</key> | ||
<integer>4000</integer> | ||
<key>StartupDelay</key> | ||
<integer>0</integer> | ||
<key>UseDesignVoltageForCurrentCapacity</key> | ||
<true/> | ||
<key>UseDesignVoltageForDesignCapacity</key> | ||
<true/> | ||
<key>UseDesignVoltageForMaxCapacity</key> | ||
<true/> | ||
<key>UseExtendedBatteryInformationMethod</key> | ||
<true/> | ||
<key>UseExtraBatteryInformationMethod</key> | ||
<true/> | ||
</dict> | ||
<key>IOClass</key> | ||
<string>AppleSmartBatteryManager</string> | ||
<key>IONameMatch</key> | ||
<string>PNP0C0A</string> | ||
<key>IOProbeScore</key> | ||
<integer>1000</integer> | ||
<key>IOProviderClass</key> | ||
<string>IOACPIPlatformDevice</string> | ||
</dict> | ||
</dict> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright © 2011 Apple Inc. All rights reserved, RehabMan 2012</string> | ||
<key>OSBundleLibraries</key> | ||
<dict> | ||
<key>com.apple.iokit.IOACPIFamily</key> | ||
<string>1.0d1</string> | ||
<key>com.apple.kpi.iokit</key> | ||
<string>9.0</string> | ||
<key>com.apple.kpi.libkern</key> | ||
<string>9.0</string> | ||
</dict> | ||
<key>OSBundleRequired</key> | ||
<string>Root</string> | ||
<key>Source Code</key> | ||
<string>https://github.com/RehabMan/OS-X-ACPI-Battery-Driver</string> | ||
</dict> | ||
</plist> |
Binary file added
BIN
+69.5 KB
EFI/OC/Kexts/ACPIBatteryManager.kext/Contents/MacOS/ACPIBatteryManager
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>BuildMachineOSBuild</key> | ||
<string>19G2021</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>Black80211</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>net.rpeshkov.Black80211</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>Black80211</string> | ||
<key>CFBundlePackageType</key> | ||
<string>KEXT</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>MacOSX</string> | ||
</array> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
<key>DTCompiler</key> | ||
<string>com.apple.compilers.llvm.clang.1_0</string> | ||
<key>DTPlatformBuild</key> | ||
<string>11E708</string> | ||
<key>DTPlatformVersion</key> | ||
<string>GM</string> | ||
<key>DTSDKBuild</key> | ||
<string>19G68</string> | ||
<key>DTSDKName</key> | ||
<string>macosx10.15</string> | ||
<key>DTXcode</key> | ||
<string>1160</string> | ||
<key>DTXcodeBuild</key> | ||
<string>11E708</string> | ||
<key>IOKitPersonalities</key> | ||
<dict> | ||
<key>Black80211</key> | ||
<dict> | ||
<key>CFBundleIdentifier</key> | ||
<string>net.rpeshkov.Black80211</string> | ||
<key>IOClass</key> | ||
<string>Black80211Control</string> | ||
<key>IOProviderClass</key> | ||
<string>Black80211Device</string> | ||
</dict> | ||
</dict> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.15</string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright © 2018 Roman Peshkov. All rights reserved.</string> | ||
<key>OSBundleLibraries</key> | ||
<dict> | ||
<key>com.apple.iokit.IO80211Family</key> | ||
<string>1200.12.2b1</string> | ||
<key>com.apple.iokit.IONetworkingFamily</key> | ||
<string>3.2</string> | ||
<key>com.apple.iokit.IOPCIFamily</key> | ||
<string>2.9</string> | ||
<key>com.apple.kpi.bsd</key> | ||
<string>16.7</string> | ||
<key>com.apple.kpi.iokit</key> | ||
<string>16.7</string> | ||
<key>com.apple.kpi.libkern</key> | ||
<string>16.7</string> | ||
<key>com.apple.kpi.mach</key> | ||
<string>16.7</string> | ||
</dict> | ||
<key>OSBundleRequired</key> | ||
<string>Network-Root</string> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+104 Bytes
(100%)
EFI/OC/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager
Binary file not shown.
Oops, something went wrong.