mirror of https://github.com/acidanthera/audk.git
Vlv2TbltDevicePkg: Exclude CapsuleX64 from IA32 build
CapsuleX64 is for 64bits capsule data access in PEI phase, it is only needed for X64 DXE build. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Tim He <tim.he@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18106 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
eb63c77b8e
commit
94dfaa233c
|
@ -359,8 +359,10 @@ INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET
|
|||
|
||||
!if $(CAPSULE_ENABLE) == TRUE
|
||||
INF MdeModulePkg/Universal/CapsulePei/CapsulePei.inf
|
||||
!if $(DXE_ARCHITECTURE) == "X64"
|
||||
INF MdeModulePkg/Universal/CapsulePei/CapsuleX64.inf
|
||||
!endif
|
||||
!endif
|
||||
|
||||
!if $(MINNOW2_FSP_BUILD) == FALSE
|
||||
!if $(PCIESC_ENABLE) == TRUE
|
||||
|
|
|
@ -317,8 +317,10 @@ INF RuleOverride = BINARY $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET
|
|||
|
||||
!if $(CAPSULE_ENABLE) == TRUE
|
||||
INF MdeModulePkg/Universal/CapsulePei/CapsulePei.inf
|
||||
!if $(DXE_ARCHITECTURE) == "X64"
|
||||
INF MdeModulePkg/Universal/CapsulePei/CapsuleX64.inf
|
||||
!endif
|
||||
!endif
|
||||
|
||||
!if $(MINNOW2_FSP_BUILD) == FALSE
|
||||
!if $(PCIESC_ENABLE) == TRUE
|
||||
|
|
|
@ -1100,15 +1100,6 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
|||
!endif
|
||||
}
|
||||
|
||||
!if $(CAPSULE_ENABLE) == TRUE
|
||||
MdeModulePkg/Universal/CapsulePei/CapsuleX64.inf {
|
||||
<LibraryClasses>
|
||||
PcdLib|MdePkg/Library/PeiPcdLib/PeiPcdLib.inf
|
||||
MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf
|
||||
HobLib|MdePkg/Library/PeiHobLib/PeiHobLib.inf
|
||||
}
|
||||
!endif
|
||||
|
||||
MdeModulePkg/Universal/ReportStatusCodeRouter/Smm/ReportStatusCodeRouterSmm.inf
|
||||
MdeModulePkg/Universal/SecurityStubDxe/SecurityStubDxe.inf{
|
||||
<LibraryClasses>
|
||||
|
|
Loading…
Reference in New Issue