mirror of https://github.com/acidanthera/audk.git
Vlv2TbltDevicePkg: Use 4K aligned PE/COFF sections
Update [BuildOptions] to use of 4K aligned PE/COFF image sections to support page level protection of DXE_RUNTIME_DRIVER, SMM_CORE, and DXE_SMM_DRIVER modules. Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: David Wei <david.wei@intel.com> Cc: Mang Guo <mang.guo@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney <michael.d.kinney@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
This commit is contained in:
parent
bfe34275a9
commit
eee350c067
|
@ -1676,6 +1676,22 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
||||||
INTEL:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
INTEL:*_*_X64_GENFW_FLAGS = --keepexceptiontable
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Force PE/COFF sections to be aligned at 4KB boundaries to support page level
|
||||||
|
# protection of DXE_RUNTIME_DRIVER modules
|
||||||
|
#
|
||||||
|
[BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
|
||||||
|
MSFT:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
||||||
|
GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
||||||
|
|
||||||
|
#
|
||||||
|
# Force PE/COFF sections to be aligned at 4KB boundaries to support page level
|
||||||
|
# protection of DXE_SMM_DRIVER/SMM_CORE modules
|
||||||
|
#
|
||||||
|
[BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]
|
||||||
|
MSFT:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
||||||
|
GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
||||||
|
|
||||||
[BuildOptions.Common.EDK]
|
[BuildOptions.Common.EDK]
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -1659,6 +1659,22 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
||||||
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Force PE/COFF sections to be aligned at 4KB boundaries to support page level
|
||||||
|
# protection of DXE_RUNTIME_DRIVER modules
|
||||||
|
#
|
||||||
|
[BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
|
||||||
|
MSFT:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
||||||
|
GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
||||||
|
|
||||||
|
#
|
||||||
|
# Force PE/COFF sections to be aligned at 4KB boundaries to support page level
|
||||||
|
# protection of DXE_SMM_DRIVER/SMM_CORE modules
|
||||||
|
#
|
||||||
|
[BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]
|
||||||
|
MSFT:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
||||||
|
GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
||||||
|
|
||||||
[BuildOptions.Common.EDK]
|
[BuildOptions.Common.EDK]
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -1668,6 +1668,22 @@ $(PLATFORM_BINARY_PACKAGE)/$(DXE_ARCHITECTURE)$(TARGET)/IA32/fTPMInitPeim.inf
|
||||||
|
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
#
|
||||||
|
# Force PE/COFF sections to be aligned at 4KB boundaries to support page level
|
||||||
|
# protection of DXE_RUNTIME_DRIVER modules
|
||||||
|
#
|
||||||
|
[BuildOptions.common.EDKII.DXE_RUNTIME_DRIVER]
|
||||||
|
MSFT:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
||||||
|
GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
||||||
|
|
||||||
|
#
|
||||||
|
# Force PE/COFF sections to be aligned at 4KB boundaries to support page level
|
||||||
|
# protection of DXE_SMM_DRIVER/SMM_CORE modules
|
||||||
|
#
|
||||||
|
[BuildOptions.common.EDKII.DXE_SMM_DRIVER, BuildOptions.common.EDKII.SMM_CORE]
|
||||||
|
MSFT:*_*_*_DLINK_FLAGS = /ALIGN:4096
|
||||||
|
GCC:*_*_*_DLINK_FLAGS = -z common-page-size=0x1000
|
||||||
|
|
||||||
[BuildOptions.Common.EDK]
|
[BuildOptions.Common.EDK]
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue