diff options
author | Ronak Kanabar <ronak.kanabar@intel.com> | 2024-10-21 12:15:21 +0530 |
---|---|---|
committer | Karthik Ramasubramanian <kramasub@google.com> | 2024-11-06 17:00:06 +0000 |
commit | 4386948569f18e38ecade813849e9e25e7e1c841 (patch) | |
tree | d76cdee71821a60e1cfd065dfefcc5c6a80142b6 /src/vendorcode/intel/Kconfig | |
parent | 099bec1cc613b8fd9cd166914bbcc3d9e46d4df5 (diff) |
vendorcode/intel: Add edk2-stable202305 support
Add edk2-stable202305 support for MTL and RPL FSPs.
This patch includes (edk2/edk2-stable202302) all required
headers for edk2-stable202302 EDK2 tag from EDK2 github
project using below command:
git clone -b edk2-stable202305 https://github.com/tianocore/edk2.git
commit hash: ba91d0292e593df8528b66f99c1b0b14fadc8e16
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.
Add following fixes from older Edk2
060492ecd2 Safe guard enum macro in SmBios.h
2bf9599cf1 Use fixed size struct elements
cf4c6fd225 Remove FSPM_ARCH_UPD config guard
dc781d3a83 Define FSP_SIG macro for FSP 2.x compatibility
d045074b91 Remove wchar_t asserts
Change-Id: I96f0d0e393d31b325f9e42e3494556a2f6e1228e
Signed-off-by: Ronak Kanabar <ronak.kanabar@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84817
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/vendorcode/intel/Kconfig')
-rw-r--r-- | src/vendorcode/intel/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/vendorcode/intel/Kconfig b/src/vendorcode/intel/Kconfig index 69fbc00957..1fd81dce66 100644 --- a/src/vendorcode/intel/Kconfig +++ b/src/vendorcode/intel/Kconfig @@ -23,6 +23,10 @@ config UDK_202302_BINDING def_bool n select UDK_BASE +config UDK_202305_BINDING + def_bool n + select UDK_BASE + if UDK_BASE config UDK_2013_VERSION int @@ -44,8 +48,13 @@ config UDK_202302_VERSION int default 202302 +config UDK_202305_VERSION + int + default 202305 + config UDK_VERSION int + default 202305 if UDK_202305_BINDING default 202302 if UDK_202302_BINDING default 202111 if UDK_202111_BINDING default 202005 if UDK_202005_BINDING |