This patch includes (edk2/edk2-stable202111) all required headers for edk2-stable202111 EDK2 tag from EDK2 github project using below command: >> git clone -b edk2-stable202111 https://github.com/tianocore/edk2.git commit hash: bb1bba3d776733c41dbfa2d1dc0fe234819a79f2 Only include necessary header files. MdePkg/Include/Base.h was updated to avoid compilation errors through safeguarding definitions for MIN, MAX, NULL, ABS, ARRAY_SIZE. Note: edk2-stable202111 tag is required to adopt FSP 2.3 specification. - Need to add ExtendedImageRevision in FSP_INFO_HEADER structure. - Need to add FSP_NON_VOLATILE_STORAGE_HOB2 header. Change-Id: I786cc05f9a638ac6226ebc8c0eaf1dc8189a4ca4 Signed-off-by: Subrata Banik <subi.banik@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59986 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Jonathan Zhang <jonzhang@fb.com>
57 lines
895 B
Plaintext
57 lines
895 B
Plaintext
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config UDK_BASE
|
|
def_bool n
|
|
|
|
config UEFI_2_4_BINDING
|
|
def_bool n
|
|
select UDK_BASE
|
|
|
|
config UDK_2015_BINDING
|
|
def_bool n
|
|
select UDK_BASE
|
|
|
|
config UDK_2017_BINDING
|
|
def_bool n
|
|
select UDK_BASE
|
|
|
|
config UDK_202005_BINDING
|
|
def_bool n
|
|
select UDK_BASE
|
|
|
|
config UDK_202111_BINDING
|
|
def_bool n
|
|
select UDK_BASE
|
|
|
|
if UDK_BASE
|
|
config UDK_2013_VERSION
|
|
int
|
|
default 2013
|
|
|
|
config UDK_2015_VERSION
|
|
int
|
|
default 2015
|
|
|
|
config UDK_2017_VERSION
|
|
int
|
|
default 2017
|
|
|
|
config UDK_202005_VERSION
|
|
int
|
|
default 202005
|
|
|
|
config UDK_202111_VERSION
|
|
int
|
|
default 202111
|
|
|
|
config UDK_VERSION
|
|
int
|
|
default UDK_202111_VERSION if UDK_202111_BINDING
|
|
default UDK_202005_VERSION if UDK_202005_BINDING
|
|
default UDK_2017_VERSION if UDK_2017_BINDING
|
|
default UDK_2015_VERSION if UDK_2015_BINDING
|
|
default UDK_2013_VERSION
|
|
help
|
|
UEFI Development Kit version for Platform
|
|
endif # UDK_BASE
|