* [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms
@ 2022-11-18 7:56 Min Xu
2022-11-18 7:56 ` [PATCH V1 1/5] MinPlatformPkg: Use CcExitLib instead of VmgExitLib Min Xu
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Min Xu @ 2022-11-18 7:56 UTC (permalink / raw)
To: devel
Cc: Min Xu, Chasel Chiu, Nate DeSimone, Isaac Oram, Liming Gao,
Jiewen Yao, Eric Dong, Michael D Kinney, Kelly Steele,
Zailiang Sun, Yi Qian, Yanbo Huang
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
VmgExitLib is renamed as CcExitLib in EDK2. This change should be
applied in edk2-platforms as well.
The impacted platform pkgs are:
- MinPlatformPkg
- QuarkPlatformPkg
- SimicsOpenBoardPlatformPkg
- Vlv2TbltDevicePkg
- WhitleyOpenBoardPkg
Cc: Chasel Chiu <chasel.chiu@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Isaac Oram <isaac.w.oram@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Cc: Zailiang Sun <zailiang.sun@intel.com>
Cc: Yi Qian <yi.qian@intel.com>
Cc: Yanbo Huang <yanbo.huang@intel.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
Min M Xu (5):
MinPlatformPkg: Use CcExitLib instead of VmgExitLib
QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib
SimicsOpenBoardPlatformPkg: Use CcExitLib instead of VmgExitLib
Vlv2TbltDevicePkg: Use CcExitLib instead of VmgExitLib
WhitleyOpenBoardPkg: Use CcExitLib instead of VmgExitLib
Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc | 2 +-
Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc | 2 +-
Platform/Intel/QuarkPlatformPkg/Quark.dsc | 2 +-
Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 2 +-
.../Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc | 2 +-
Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc | 2 +-
Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc | 2 +-
Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
--
2.29.2.windows.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH V1 1/5] MinPlatformPkg: Use CcExitLib instead of VmgExitLib
2022-11-18 7:56 [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Min Xu
@ 2022-11-18 7:56 ` Min Xu
2022-11-18 7:56 ` [PATCH V1 2/5] QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib Min Xu
` (4 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Min Xu @ 2022-11-18 7:56 UTC (permalink / raw)
To: devel
Cc: Min M Xu, Chasel Chiu, Nate DeSimone, Isaac Oram, Liming Gao,
Eric Dong, Jiewen Yao
From: Min M Xu <min.m.xu@intel.com>
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
VmgExitLib is renamed as CcExitLib in EDK2. This change should be
applied in MinPlatformPkg as well.
Cc: Chasel Chiu <chasel.chiu@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Isaac Oram <isaac.w.oram@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
---
Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc | 2 +-
Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc
index e48d4b06d89c..14af0acc3be6 100644
--- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc
+++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc
@@ -38,7 +38,7 @@
HashLib|SecurityPkg/Library/HashLibBaseCryptoRouter/HashLibBaseCryptoRouterDxe.inf
Tcg2PhysicalPresenceLib|SecurityPkg/Library/DxeTcg2PhysicalPresenceLib/DxeTcg2PhysicalPresenceLib.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
[LibraryClasses.common.DXE_CORE, LibraryClasses.common.DXE_DRIVER, LibraryClasses.common.DXE_RUNTIME_DRIVER, LibraryClasses.common.UEFI_DRIVER, LibraryClasses.common.UEFI_APPLICATION]
VariableReadLib|MinPlatformPkg/Library/DxeRuntimeVariableReadLib/DxeRuntimeVariableReadLib.inf
diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc
index 4424ebaecc22..595f0ee49002 100644
--- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc
+++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc
@@ -36,7 +36,7 @@
!endif
TimerLib|PcAtChipsetPkg/Library/AcpiTimerLib/BaseAcpiTimerLib.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
[LibraryClasses.common.SEC]
ReportStatusCodeLib|MdePkg/Library/BaseReportStatusCodeLibNull/BaseReportStatusCodeLibNull.inf
--
2.29.2.windows.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH V1 2/5] QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib
2022-11-18 7:56 [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Min Xu
2022-11-18 7:56 ` [PATCH V1 1/5] MinPlatformPkg: Use CcExitLib instead of VmgExitLib Min Xu
@ 2022-11-18 7:56 ` Min Xu
2022-11-18 7:56 ` [PATCH V1 3/5] SimicsOpenBoardPlatformPkg: Use CcExitLib instead of VmgExitLib Min Xu
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Min Xu @ 2022-11-18 7:56 UTC (permalink / raw)
To: devel; +Cc: Min M Xu, Michael D Kinney, Kelly Steele, Nate DeSimone,
Jiewen Yao
From: Min M Xu <min.m.xu@intel.com>
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
VmgExitLib is renamed as CcExitLib in EDK2. This change should be
applied in QuarkPlatformPkg as well.
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Kelly Steele <kelly.steele@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
---
Platform/Intel/QuarkPlatformPkg/Quark.dsc | 2 +-
Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Platform/Intel/QuarkPlatformPkg/Quark.dsc b/Platform/Intel/QuarkPlatformPkg/Quark.dsc
index cc1eba4df47d..24a19bb464bd 100644
--- a/Platform/Intel/QuarkPlatformPkg/Quark.dsc
+++ b/Platform/Intel/QuarkPlatformPkg/Quark.dsc
@@ -105,7 +105,7 @@
!endif
DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
#
# UEFI & PI
diff --git a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
index 993d698eece5..a337d497a69f 100644
--- a/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
+++ b/Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc
@@ -93,7 +93,7 @@
!endif
DebugAgentLib|MdeModulePkg/Library/DebugAgentLibNull/DebugAgentLibNull.inf
PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
#
# UEFI & PI
--
2.29.2.windows.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH V1 3/5] SimicsOpenBoardPlatformPkg: Use CcExitLib instead of VmgExitLib
2022-11-18 7:56 [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Min Xu
2022-11-18 7:56 ` [PATCH V1 1/5] MinPlatformPkg: Use CcExitLib instead of VmgExitLib Min Xu
2022-11-18 7:56 ` [PATCH V1 2/5] QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib Min Xu
@ 2022-11-18 7:56 ` Min Xu
2022-11-18 7:56 ` [PATCH V1 4/5] Vlv2TbltDevicePkg: " Min Xu
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Min Xu @ 2022-11-18 7:56 UTC (permalink / raw)
To: devel; +Cc: Min M Xu, Nate DeSimone, Jiewen Yao
From: Min M Xu <min.m.xu@intel.com>
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
VmgExitLib is renamed as CcExitLib in EDK2. This change should be
applied in SimcOpenBoardPlatformPkg as well.
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
---
.../Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc b/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc
index a3c54a19739c..4e6d067eb176 100644
--- a/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc
+++ b/Platform/Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc
@@ -136,7 +136,7 @@
#######################################
PeiResourcePublicationLib|MdePkg/Library/PeiResourcePublicationLib/PeiResourcePublicationLib.inf
MpInitLib|UefiCpuPkg/Library/MpInitLib/PeiMpInitLib.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
#####################################
# Silicon Package
--
2.29.2.windows.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH V1 4/5] Vlv2TbltDevicePkg: Use CcExitLib instead of VmgExitLib
2022-11-18 7:56 [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Min Xu
` (2 preceding siblings ...)
2022-11-18 7:56 ` [PATCH V1 3/5] SimicsOpenBoardPlatformPkg: Use CcExitLib instead of VmgExitLib Min Xu
@ 2022-11-18 7:56 ` Min Xu
2022-11-18 7:56 ` [PATCH V1 5/5] WhitleyOpenBoardPkg: " Min Xu
2022-11-23 4:01 ` [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Michael D Kinney
5 siblings, 0 replies; 8+ messages in thread
From: Min Xu @ 2022-11-18 7:56 UTC (permalink / raw)
To: devel; +Cc: Min M Xu, Zailiang Sun, Yi Qian, Nate DeSimone, Jiewen Yao
From: Min M Xu <min.m.xu@intel.com>
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
VmgExitLib is renamed as CcExitLib in EDK2. This change should be
applied in Vlv2TbltDevicePkg as well.
Cc: Zailiang Sun <zailiang.sun@intel.com>
Cc: Yi Qian <yi.qian@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
---
Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc | 2 +-
Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc
index d15da4081948..06f2a5563d1d 100644
--- a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc
+++ b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc
@@ -163,7 +163,7 @@
LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
#
diff --git a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc
index 4a5548b80ea8..8215a9130ea2 100644
--- a/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc
+++ b/Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc
@@ -165,7 +165,7 @@
LocalApicLib|UefiCpuPkg/Library/BaseXApicX2ApicLib/BaseXApicX2ApicLib.inf
CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf
MpInitLib|UefiCpuPkg/Library/MpInitLib/DxeMpInitLib.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
MicrocodeLib|UefiCpuPkg/Library/MicrocodeLib/MicrocodeLib.inf
#
--
2.29.2.windows.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH V1 5/5] WhitleyOpenBoardPkg: Use CcExitLib instead of VmgExitLib
2022-11-18 7:56 [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Min Xu
` (3 preceding siblings ...)
2022-11-18 7:56 ` [PATCH V1 4/5] Vlv2TbltDevicePkg: " Min Xu
@ 2022-11-18 7:56 ` Min Xu
2022-11-23 4:01 ` [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Michael D Kinney
5 siblings, 0 replies; 8+ messages in thread
From: Min Xu @ 2022-11-18 7:56 UTC (permalink / raw)
To: devel; +Cc: Min M Xu, Isaac Oram, Nate DeSimone, Chasel Chiu, Jiewen Yao
From: Min M Xu <min.m.xu@intel.com>
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
VmgExitLib is renamed as CcExitLib in EDK2. This change should be
applied in WhitleyOpenBoardPkg as well.
Cc: Isaac Oram <isaac.w.oram@intel.com>
Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
Cc: Chasel Chiu <chasel.chiu@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Signed-off-by: Min Xu <min.m.xu@intel.com>
---
Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc b/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc
index 0ff9c00b9430..c784df0144c4 100644
--- a/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc
+++ b/Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc
@@ -590,7 +590,7 @@
AslUpdateLib|$(PLATFORM_PKG)/Acpi/Library/DxeAslUpdateLib/DxeAslUpdateLib.inf
PciSegmentInfoLib|$(PLATFORM_PKG)/Pci/Library/PciSegmentInfoLibSimple/PciSegmentInfoLibSimple.inf
PlatformOpromPolicyLib|$(RP_PKG)/Library/PlatformOpromPolicyLibNull/PlatformOpromPolicyLibNull.inf
- VmgExitLib|UefiCpuPkg/Library/VmgExitLibNull/VmgExitLibNull.inf
+ CcExitLib|UefiCpuPkg/Library/CcExitLibNull/CcExitLibNull.inf
CrcLib|WhitleyOpenBoardPkg/Library/BaseCrcLib/BaseCrcLib.inf
PlatformSpecificAcpiTableLib|WhitleyOpenBoardPkg/Library/PlatformSpecificAcpiTableLibNull/PlatformSpecificAcpiTableLibNull.inf
BuildAcpiTablesLib|WhitleyOpenBoardPkg/Library/BuildAcpiTablesLib/DxeBuildAcpiTablesLib.inf
--
2.29.2.windows.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms
2022-11-18 7:56 [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Min Xu
` (4 preceding siblings ...)
2022-11-18 7:56 ` [PATCH V1 5/5] WhitleyOpenBoardPkg: " Min Xu
@ 2022-11-23 4:01 ` Michael D Kinney
2022-11-23 4:05 ` Michael D Kinney
5 siblings, 1 reply; 8+ messages in thread
From: Michael D Kinney @ 2022-11-23 4:01 UTC (permalink / raw)
To: devel@edk2.groups.io, Xu, Min M, Kinney, Michael D
Cc: Chiu, Chasel, Desimone, Nathaniel L, Oram, Isaac W, Gao, Liming,
Yao, Jiewen, Dong, Eric, Kelly Steele, Sun, Zailiang, Qian, Yi,
Huang, Yanbo
Series Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Min Xu
> Sent: Thursday, November 17, 2022 11:57 PM
> To: devel@edk2.groups.io
> Cc: Xu, Min M <min.m.xu@intel.com>; Chiu, Chasel <chasel.chiu@intel.com>; Desimone, Nathaniel L
> <nathaniel.l.desimone@intel.com>; Oram, Isaac W <isaac.w.oram@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Yao, Jiewen
> <jiewen.yao@intel.com>; Dong, Eric <eric.dong@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Kelly Steele
> <kelly.steele@intel.com>; Sun, Zailiang <zailiang.sun@intel.com>; Qian, Yi <yi.qian@intel.com>; Huang, Yanbo
> <yanbo.huang@intel.com>
> Subject: [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms
>
> BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
>
> VmgExitLib is renamed as CcExitLib in EDK2. This change should be
> applied in edk2-platforms as well.
>
> The impacted platform pkgs are:
> - MinPlatformPkg
> - QuarkPlatformPkg
> - SimicsOpenBoardPlatformPkg
> - Vlv2TbltDevicePkg
> - WhitleyOpenBoardPkg
>
> Cc: Chasel Chiu <chasel.chiu@intel.com>
> Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
> Cc: Isaac Oram <isaac.w.oram@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Kelly Steele <kelly.steele@intel.com>
> Cc: Zailiang Sun <zailiang.sun@intel.com>
> Cc: Yi Qian <yi.qian@intel.com>
> Cc: Yanbo Huang <yanbo.huang@intel.com>
> Signed-off-by: Min Xu <min.m.xu@intel.com>
>
> Min M Xu (5):
> MinPlatformPkg: Use CcExitLib instead of VmgExitLib
> QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib
> SimicsOpenBoardPlatformPkg: Use CcExitLib instead of VmgExitLib
> Vlv2TbltDevicePkg: Use CcExitLib instead of VmgExitLib
> WhitleyOpenBoardPkg: Use CcExitLib instead of VmgExitLib
>
> Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc | 2 +-
> Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc | 2 +-
> Platform/Intel/QuarkPlatformPkg/Quark.dsc | 2 +-
> Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 2 +-
> .../Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc | 2 +-
> Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc | 2 +-
> Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc | 2 +-
> Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc | 2 +-
> 8 files changed, 8 insertions(+), 8 deletions(-)
>
> --
> 2.29.2.windows.2
>
>
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms
2022-11-23 4:01 ` [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Michael D Kinney
@ 2022-11-23 4:05 ` Michael D Kinney
0 siblings, 0 replies; 8+ messages in thread
From: Michael D Kinney @ 2022-11-23 4:05 UTC (permalink / raw)
To: devel@edk2.groups.io, Xu, Min M, Kinney, Michael D
Cc: Chiu, Chasel, Desimone, Nathaniel L, Oram, Isaac W, Gao, Liming,
Yao, Jiewen, Dong, Eric, Kelly Steele, Sun, Zailiang, Qian, Yi,
Huang, Yanbo
Pushed 1e1e35bb3b..4ad557e494
Mike
> -----Original Message-----
> From: Kinney, Michael D <michael.d.kinney@intel.com>
> Sent: Tuesday, November 22, 2022 8:02 PM
> To: devel@edk2.groups.io; Xu, Min M <min.m.xu@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>
> Cc: Chiu, Chasel <chasel.chiu@intel.com>; Desimone, Nathaniel L <nathaniel.l.desimone@intel.com>; Oram, Isaac W
> <isaac.w.oram@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Yao, Jiewen <jiewen.yao@intel.com>; Dong, Eric
> <eric.dong@intel.com>; Kelly Steele <kelly.steele@intel.com>; Sun, Zailiang <zailiang.sun@intel.com>; Qian, Yi
> <yi.qian@intel.com>; Huang, Yanbo <yanbo.huang@intel.com>
> Subject: RE: [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms
>
> Series Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
>
>
> > -----Original Message-----
> > From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Min Xu
> > Sent: Thursday, November 17, 2022 11:57 PM
> > To: devel@edk2.groups.io
> > Cc: Xu, Min M <min.m.xu@intel.com>; Chiu, Chasel <chasel.chiu@intel.com>; Desimone, Nathaniel L
> > <nathaniel.l.desimone@intel.com>; Oram, Isaac W <isaac.w.oram@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Yao,
> Jiewen
> > <jiewen.yao@intel.com>; Dong, Eric <eric.dong@intel.com>; Kinney, Michael D <michael.d.kinney@intel.com>; Kelly Steele
> > <kelly.steele@intel.com>; Sun, Zailiang <zailiang.sun@intel.com>; Qian, Yi <yi.qian@intel.com>; Huang, Yanbo
> > <yanbo.huang@intel.com>
> > Subject: [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms
> >
> > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=4159
> >
> > VmgExitLib is renamed as CcExitLib in EDK2. This change should be
> > applied in edk2-platforms as well.
> >
> > The impacted platform pkgs are:
> > - MinPlatformPkg
> > - QuarkPlatformPkg
> > - SimicsOpenBoardPlatformPkg
> > - Vlv2TbltDevicePkg
> > - WhitleyOpenBoardPkg
> >
> > Cc: Chasel Chiu <chasel.chiu@intel.com>
> > Cc: Nate DeSimone <nathaniel.l.desimone@intel.com>
> > Cc: Isaac Oram <isaac.w.oram@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Cc: Jiewen Yao <jiewen.yao@intel.com>
> > Cc: Eric Dong <eric.dong@intel.com>
> > Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > Cc: Kelly Steele <kelly.steele@intel.com>
> > Cc: Zailiang Sun <zailiang.sun@intel.com>
> > Cc: Yi Qian <yi.qian@intel.com>
> > Cc: Yanbo Huang <yanbo.huang@intel.com>
> > Signed-off-by: Min Xu <min.m.xu@intel.com>
> >
> > Min M Xu (5):
> > MinPlatformPkg: Use CcExitLib instead of VmgExitLib
> > QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib
> > SimicsOpenBoardPlatformPkg: Use CcExitLib instead of VmgExitLib
> > Vlv2TbltDevicePkg: Use CcExitLib instead of VmgExitLib
> > WhitleyOpenBoardPkg: Use CcExitLib instead of VmgExitLib
> >
> > Platform/Intel/MinPlatformPkg/Include/Dsc/CoreDxeLib.dsc | 2 +-
> > Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc | 2 +-
> > Platform/Intel/QuarkPlatformPkg/Quark.dsc | 2 +-
> > Platform/Intel/QuarkPlatformPkg/QuarkMin.dsc | 2 +-
> > .../Intel/SimicsOpenBoardPkg/BoardX58Ich10/OpenBoardPkg.dsc | 2 +-
> > Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgIA32.dsc | 2 +-
> > Platform/Intel/Vlv2TbltDevicePkg/PlatformPkgX64.dsc | 2 +-
> > Platform/Intel/WhitleyOpenBoardPkg/PlatformPkg.dsc | 2 +-
> > 8 files changed, 8 insertions(+), 8 deletions(-)
> >
> > --
> > 2.29.2.windows.2
> >
> >
> >
> >
> >
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-11-23 4:05 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-18 7:56 [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Min Xu
2022-11-18 7:56 ` [PATCH V1 1/5] MinPlatformPkg: Use CcExitLib instead of VmgExitLib Min Xu
2022-11-18 7:56 ` [PATCH V1 2/5] QuarkPlatformPkg: Use CcExitLib instead of VmgEixtLib Min Xu
2022-11-18 7:56 ` [PATCH V1 3/5] SimicsOpenBoardPlatformPkg: Use CcExitLib instead of VmgExitLib Min Xu
2022-11-18 7:56 ` [PATCH V1 4/5] Vlv2TbltDevicePkg: " Min Xu
2022-11-18 7:56 ` [PATCH V1 5/5] WhitleyOpenBoardPkg: " Min Xu
2022-11-23 4:01 ` [edk2-devel] [PATCH V1 0/5] Use CcExitLib instead of VmgExitLib in edk2-platforms Michael D Kinney
2022-11-23 4:05 ` Michael D Kinney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox