From: Peng Fan <[email protected]> Reusing IMX_BOOT_IMAGE_GUID from i.MX93 EVK is wrong. The ID is per board, so regenerate one using uuidgen.
Signed-off-by: Peng Fan <[email protected]> --- board/freescale/imx93_frdm/imx93_frdm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/freescale/imx93_frdm/imx93_frdm.c b/board/freescale/imx93_frdm/imx93_frdm.c index d97720795d6..fb78a9bd036 100644 --- a/board/freescale/imx93_frdm/imx93_frdm.c +++ b/board/freescale/imx93_frdm/imx93_frdm.c @@ -16,8 +16,8 @@ #if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT) #define IMX_BOOT_IMAGE_GUID \ - EFI_GUID(0xbc550d86, 0xda26, 0x4b70, 0xac, 0x05, \ - 0x2a, 0x44, 0x8e, 0xda, 0x6f, 0x21) + EFI_GUID(0x6f86db61, 0xcda9, 0x489a, 0xbd, 0x36, \ + 0x2f, 0x7c, 0x65, 0x1c, 0xa6, 0x5d) struct efi_fw_image fw_images[] = { { -- 2.51.0

