From 8f2411c07132658bd73df0c5c30618d36052701b Mon Sep 17 00:00:00 2001 From: Ryan Harkin Date: Wed, 19 Feb 2014 09:38:24 +0000 Subject: [PATCH] io_fip: add BL30 to FIP name to uuid table BL30 needs an entry in the table in io_fip.c. I made it #ifdef'd so that ports that don't use a BL30 won't break. Signed-off-by: Ryan Harkin --- drivers/io/io_fip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/io/io_fip.c b/drivers/io/io_fip.c index 36788a248..cb7679749 100644 --- a/drivers/io/io_fip.c +++ b/drivers/io/io_fip.c @@ -66,6 +66,9 @@ typedef struct { static const plat_fip_name_uuid_t name_uuid[] = { {BL2_IMAGE_NAME, UUID_TRUSTED_BOOT_FIRMWARE_BL2}, +#ifdef BL30_IMAGE_NAME + {BL30_IMAGE_NAME, UUID_SCP_FIRMWARE_BL30}, +#endif {BL31_IMAGE_NAME, UUID_EL3_RUNTIME_FIRMWARE_BL31}, #ifdef BL32_IMAGE_NAME /* BL3-2 is optional in the platform */ -- GitLab