@@ -43,7 +43,13 @@ struct efi_capsule_update_info update_info = {
#if IS_ENABLED(CONFIG_SET_DFU_ALT_INFO)
void set_dfu_alt_info(char *interface, char *devstr)
{
- if (IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT))
+ /*
+ * Since the EFI Capsule support is enabled only for Serial Flash,
+ * update the "dfu_alt_info" environment variable only if the
+ * interface happens to be "sf" (Serial Flash).
+ */
+ if (IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) &&
+ (strcmp(interface, "sf") == 0))
env_set("dfu_alt_info", update_info.dfu_string);
}
#endif
Commit 0af78a1a729d ("board: am62px: Define capsule update firmware info") updated the "dfu_alt_info" variable to support use-cases with Serial Flash. However, this breaks use-cases where interface is not Serial Flash ("sf"). Fix this by setting "dfu_alt_info" only when the interface is "sf". Fixes: 0af78a1a729d ("board: am62px: Define capsule update firmware info") Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com> --- v1: https://patchwork.ozlabs.org/project/uboot/patch/20241124051545.382397-5-s-vadapalli@ti.com/ Changes since v1: - Replaced "SPI Flash" with "Serial Flash" everywhere. Regards, Siddharth. board/ti/am62px/evm.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-)