Commit 81bbb921 authored by Manish Pandey's avatar Manish Pandey Committed by TrustedFirmware Code Review
Browse files

Merge "fix(plat/fvp): provide boot files via semihosting" into integration

parents fe1021f1 749d0fa8
......@@ -20,6 +20,10 @@
#define BL32_IMAGE_NAME "bl32.bin"
#define BL33_IMAGE_NAME "bl33.bin"
#define TB_FW_CONFIG_NAME "fvp_tb_fw_config.dtb"
#define SOC_FW_CONFIG_NAME "fvp_soc_fw_config.dtb"
#define TOS_FW_CONFIG_NAME "fvp_tsp_fw_config.dtb"
#define NT_FW_CONFIG_NAME "fvp_nt_fw_config.dtb"
#define FW_CONFIG_NAME "fvp_fw_config.dtb"
#define HW_CONFIG_NAME "hw_config.dtb"
#if TRUSTED_BOARD_BOOT
......@@ -58,6 +62,22 @@ static const io_file_spec_t sh_file_spec[] = {
.path = TB_FW_CONFIG_NAME,
.mode = FOPEN_MODE_RB
},
[SOC_FW_CONFIG_ID] = {
.path = SOC_FW_CONFIG_NAME,
.mode = FOPEN_MODE_RB
},
[TOS_FW_CONFIG_ID] = {
.path = TOS_FW_CONFIG_NAME,
.mode = FOPEN_MODE_RB
},
[NT_FW_CONFIG_ID] = {
.path = NT_FW_CONFIG_NAME,
.mode = FOPEN_MODE_RB
},
[FW_CONFIG_ID] = {
.path = FW_CONFIG_NAME,
.mode = FOPEN_MODE_RB
},
[HW_CONFIG_ID] = {
.path = HW_CONFIG_NAME,
.mode = FOPEN_MODE_RB
......
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