Commit 8f2411c0 authored by Ryan Harkin's avatar Ryan Harkin Committed by Sandrine Bailleux
Browse files

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: default avatarRyan Harkin <ryan.harkin@linaro.org>
parent bbd918c4
......@@ -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 */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment