diff options
author | Aaron Pop <aaronpop@microsoft.com> | 2025-04-02 07:14:13 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-04-11 17:40:10 +0000 |
commit | c5e3a840b936f9640d5c45f32b37bb24d0c61a67 (patch) | |
tree | c907459b8b4d41fbe7333a0358bafd7728d800b2 | |
parent | 51229eee58c12ff6fd444f07e71f79ccd2259702 (diff) | |
download | edk2-c5e3a840b936f9640d5c45f32b37bb24d0c61a67.zip edk2-c5e3a840b936f9640d5c45f32b37bb24d0c61a67.tar.gz edk2-c5e3a840b936f9640d5c45f32b37bb24d0c61a67.tar.bz2 |
UefiCpuPkg: Add StmmCore for IntelMmSaveStateLib,SmmCpuPlatformHookLibNull.
IntelMmSaveStateLib and SmmCpuPlatformHookLibNull were limited to
DXE_SMM_DRIVER MM_STANDALONE, where as previously not supported module
types were listed.
Add MM_CORE_STANDALONE as a supported module type for these libraries.
Signed-off-by: Aaron Pop <aaronpop@microsoft.com>
-rw-r--r-- | UefiCpuPkg/Library/MmSaveStateLib/IntelMmSaveStateLib.inf | 2 | ||||
-rw-r--r-- | UefiCpuPkg/Library/SmmCpuPlatformHookLibNull/SmmCpuPlatformHookLibNull.inf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/UefiCpuPkg/Library/MmSaveStateLib/IntelMmSaveStateLib.inf b/UefiCpuPkg/Library/MmSaveStateLib/IntelMmSaveStateLib.inf index 71d8e5e..519c79f 100644 --- a/UefiCpuPkg/Library/MmSaveStateLib/IntelMmSaveStateLib.inf +++ b/UefiCpuPkg/Library/MmSaveStateLib/IntelMmSaveStateLib.inf @@ -16,7 +16,7 @@ FILE_GUID = 37E8137B-9F74-4250-8951-7A970A3C39C0
MODULE_TYPE = DXE_SMM_DRIVER
VERSION_STRING = 1.0
- LIBRARY_CLASS = MmSaveStateLib|DXE_SMM_DRIVER MM_STANDALONE
+ LIBRARY_CLASS = MmSaveStateLib|DXE_SMM_DRIVER MM_STANDALONE MM_CORE_STANDALONE
[Sources]
MmSaveState.h
diff --git a/UefiCpuPkg/Library/SmmCpuPlatformHookLibNull/SmmCpuPlatformHookLibNull.inf b/UefiCpuPkg/Library/SmmCpuPlatformHookLibNull/SmmCpuPlatformHookLibNull.inf index 50eb746..098e656 100644 --- a/UefiCpuPkg/Library/SmmCpuPlatformHookLibNull/SmmCpuPlatformHookLibNull.inf +++ b/UefiCpuPkg/Library/SmmCpuPlatformHookLibNull/SmmCpuPlatformHookLibNull.inf @@ -18,7 +18,7 @@ FILE_GUID = D6494E1B-E06F-4ab5-B64D-48B25AA9EB33
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
- LIBRARY_CLASS = SmmCpuPlatformHookLib|DXE_SMM_DRIVER MM_STANDALONE
+ LIBRARY_CLASS = SmmCpuPlatformHookLib|DXE_SMM_DRIVER MM_STANDALONE MM_CORE_STANDALONE
#
# The following information is for reference only and not required by the build tools.
|