mirror of https://github.com/acidanthera/audk.git
OvmfPkg: Add PcdSecureBootEnable
Signed-off-by: lgrosenb Reviewed-by: jljusten Reviewed-by: mdkinney git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13091 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6a52c7a1bb
commit
e05061c59f
|
@ -45,3 +45,6 @@
|
||||||
[PcdsDynamic, PcdsDynamicEx]
|
[PcdsDynamic, PcdsDynamicEx]
|
||||||
gUefiOvmfPkgTokenSpaceGuid.PcdEmuVariableEvent|0|UINT64|2
|
gUefiOvmfPkgTokenSpaceGuid.PcdEmuVariableEvent|0|UINT64|2
|
||||||
|
|
||||||
|
[PcdsFeatureFlag]
|
||||||
|
gUefiOvmfPkgTokenSpaceGuid.PcdSecureBootEnable|FALSE|BOOLEAN|3
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,12 @@
|
||||||
SKUID_IDENTIFIER = DEFAULT
|
SKUID_IDENTIFIER = DEFAULT
|
||||||
FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32.fdf
|
FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32.fdf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Defines for default states. These can be changed on the command line.
|
||||||
|
# -D FLAG=VALUE
|
||||||
|
#
|
||||||
|
DEFINE SECURE_BOOT_ENABLE = FALSE
|
||||||
|
|
||||||
[BuildOptions]
|
[BuildOptions]
|
||||||
GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
||||||
INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
||||||
|
@ -206,6 +212,9 @@
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
||||||
gOptionRomPkgTokenSpaceGuid.PcdSupportGop|TRUE
|
gOptionRomPkgTokenSpaceGuid.PcdSupportGop|TRUE
|
||||||
gOptionRomPkgTokenSpaceGuid.PcdSupportUga|FALSE
|
gOptionRomPkgTokenSpaceGuid.PcdSupportUga|FALSE
|
||||||
|
!if $(SECURE_BOOT_ENABLE) == TRUE
|
||||||
|
gUefiOvmfPkgTokenSpaceGuid.PcdSecureBootEnable|TRUE
|
||||||
|
!endif
|
||||||
|
|
||||||
[PcdsFixedAtBuild]
|
[PcdsFixedAtBuild]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
||||||
|
|
|
@ -29,6 +29,12 @@
|
||||||
SKUID_IDENTIFIER = DEFAULT
|
SKUID_IDENTIFIER = DEFAULT
|
||||||
FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32X64.fdf
|
FLASH_DEFINITION = OvmfPkg/OvmfPkgIa32X64.fdf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Defines for default states. These can be changed on the command line.
|
||||||
|
# -D FLAG=VALUE
|
||||||
|
#
|
||||||
|
DEFINE SECURE_BOOT_ENABLE = FALSE
|
||||||
|
|
||||||
[BuildOptions]
|
[BuildOptions]
|
||||||
GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
||||||
INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
||||||
|
@ -207,6 +213,9 @@
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
||||||
gOptionRomPkgTokenSpaceGuid.PcdSupportGop|TRUE
|
gOptionRomPkgTokenSpaceGuid.PcdSupportGop|TRUE
|
||||||
gOptionRomPkgTokenSpaceGuid.PcdSupportUga|FALSE
|
gOptionRomPkgTokenSpaceGuid.PcdSupportUga|FALSE
|
||||||
|
!if $(SECURE_BOOT_ENABLE) == TRUE
|
||||||
|
gUefiOvmfPkgTokenSpaceGuid.PcdSecureBootEnable|TRUE
|
||||||
|
!endif
|
||||||
|
|
||||||
[PcdsFixedAtBuild]
|
[PcdsFixedAtBuild]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
||||||
|
|
|
@ -29,6 +29,12 @@
|
||||||
SKUID_IDENTIFIER = DEFAULT
|
SKUID_IDENTIFIER = DEFAULT
|
||||||
FLASH_DEFINITION = OvmfPkg/OvmfPkgX64.fdf
|
FLASH_DEFINITION = OvmfPkg/OvmfPkgX64.fdf
|
||||||
|
|
||||||
|
#
|
||||||
|
# Defines for default states. These can be changed on the command line.
|
||||||
|
# -D FLAG=VALUE
|
||||||
|
#
|
||||||
|
DEFINE SECURE_BOOT_ENABLE = FALSE
|
||||||
|
|
||||||
[BuildOptions]
|
[BuildOptions]
|
||||||
GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
GCC:RELEASE_*_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
||||||
INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
INTEL:RELEASE_*_*_CC_FLAGS = /D MDEPKG_NDEBUG
|
||||||
|
@ -207,6 +213,9 @@
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport|FALSE
|
||||||
gOptionRomPkgTokenSpaceGuid.PcdSupportGop|TRUE
|
gOptionRomPkgTokenSpaceGuid.PcdSupportGop|TRUE
|
||||||
gOptionRomPkgTokenSpaceGuid.PcdSupportUga|FALSE
|
gOptionRomPkgTokenSpaceGuid.PcdSupportUga|FALSE
|
||||||
|
!if $(SECURE_BOOT_ENABLE) == TRUE
|
||||||
|
gUefiOvmfPkgTokenSpaceGuid.PcdSecureBootEnable|TRUE
|
||||||
|
!endif
|
||||||
|
|
||||||
[PcdsFixedAtBuild]
|
[PcdsFixedAtBuild]
|
||||||
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
gEfiMdeModulePkgTokenSpaceGuid.PcdStatusCodeMemorySize|1
|
||||||
|
|
Loading…
Reference in New Issue