update FakeSMC

Signed-off-by: SergeySlice <sergey.slice@gmail.com>
This commit is contained in:
SergeySlice 2022-07-26 22:01:13 +03:00
parent 735987a8b1
commit 46135654f0
3 changed files with 44 additions and 8 deletions

View File

@ -3,7 +3,7 @@
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>BuildMachineOSBuild</key> <key>BuildMachineOSBuild</key>
<string>17G7024</string> <string>18G9323</string>
<key>CFBundleDevelopmentRegion</key> <key>CFBundleDevelopmentRegion</key>
<string>English</string> <string>English</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
@ -17,7 +17,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>KEXT</string> <string>KEXT</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>3.5.2</string> <string>3.5.4</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleSupportedPlatforms</key> <key>CFBundleSupportedPlatforms</key>
@ -25,21 +25,21 @@
<string>MacOSX</string> <string>MacOSX</string>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>3.5.2</string> <string>3.5.4</string>
<key>DTCompiler</key> <key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string> <string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key> <key>DTPlatformBuild</key>
<string>10B61</string> <string>11B53</string>
<key>DTPlatformVersion</key> <key>DTPlatformVersion</key>
<string>GM</string> <string>GM</string>
<key>DTSDKBuild</key> <key>DTSDKBuild</key>
<string>15E60</string> <string>17C76</string>
<key>DTSDKName</key> <key>DTSDKName</key>
<string>macosx10.11</string> <string>macosx10.13</string>
<key>DTXcode</key> <key>DTXcode</key>
<string>1010</string> <string>1120</string>
<key>DTXcodeBuild</key> <key>DTXcodeBuild</key>
<string>10B61</string> <string>11B53</string>
<key>IOKitPersonalities</key> <key>IOKitPersonalities</key>
<dict> <dict>
<key>SMC Device Emulator</key> <key>SMC Device Emulator</key>
@ -218,6 +218,13 @@
ATAPAAAD ATAPAAAD
</data> </data>
</array> </array>
<key>RGEN</key>
<array>
<string>ui8</string>
<data>
Ag==
</data>
</array>
<key>RMde</key> <key>RMde</key>
<array> <array>
<string>char</string> <string>char</string>
@ -230,6 +237,13 @@
<string>ch8*</string> <string>ch8*</string>
<string>m82</string> <string>m82</string>
</array> </array>
<key>RVBF</key>
<array>
<string>{rev</string>
<data>
ATAPAAAD
</data>
</array>
</dict> </dict>
<key>debug</key> <key>debug</key>
<false/> <false/>
@ -246,6 +260,8 @@
<string>ACPI</string> <string>ACPI</string>
</dict> </dict>
</dict> </dict>
<key>LSMinimumSystemVersion</key>
<string>10.13</string>
<key>OSBundleCompatibleVersion</key> <key>OSBundleCompatibleVersion</key>
<string>3.3.0</string> <string>3.3.0</string>
<key>OSBundleLibraries</key> <key>OSBundleLibraries</key>

Binary file not shown.

View File

@ -0,0 +1,20 @@
//#ifndef SMC_HELPER_H
//#define SMC_HELPER_H
#include <Library/BaseLib.h>
#include <Library/UefiLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/DebugLib.h>
#include <Library/PrintLib.h>
#include <Library/MemLogLib.h>
#include <Protocol/AppleSMC.h>
EFI_STATUS SMCHelperInstall(EFI_HANDLE* Handle);
//#endif