From 20ceed192904542bbc6eb1729796681129bb67e1 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Mon, 21 Apr 2025 16:10:19 -0500 Subject: [PATCH] drivers/efi/fw_info: Select necessary UDK binding as needed DRIVERS_EFI_FW_INFO requires some Intel vendorcode headers which are selected by default on FSP 2.x platforms, but not by earlier ones. Select the oldest UDK binding for non-FSP 2.x boards, so that the required headers are available, rather than depending on UDK_BASE and requiring those boards to manually select the binding Change-Id: I27ab64ab0c9d4d45cc09061f6f8c3725c24df706 Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/87409 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons --- src/drivers/efi/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/efi/Kconfig b/src/drivers/efi/Kconfig index 7969c6a2b4..9f63938a3a 100644 --- a/src/drivers/efi/Kconfig +++ b/src/drivers/efi/Kconfig @@ -9,7 +9,7 @@ config DRIVERS_EFI_VARIABLE_STORE config DRIVERS_EFI_FW_INFO bool "Expose firmware version in a EFI-friendly form" - depends on UDK_BASE + select UDK_2017_BINDING if !PLATFORM_USES_FSP2_0 help Adds firmware version information to coreboot table in a form similar to EFI System Resource Table (ESRT) that can be used for firmware updates.