diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-10-31 23:21:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-31 23:21:39 +0000 |
commit | 27b2493c6f4fe32a0fa76dff123d193dad86c315 (patch) | |
tree | fcad15004c188158a7f91f43a57292887d372e31 /bl2/bl2_main.c | |
parent | a2ef56af183155465df8ed7577854cebec7522d9 (diff) | |
parent | 01f62b6d0d90a236cbfdf385aab7ec2ac11f2e65 (diff) |
Merge pull request #1141 from robertovargas-arm/boot_redundancy
Add platform hooks for boot redundancy support
Diffstat (limited to 'bl2/bl2_main.c')
-rw-r--r-- | bl2/bl2_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bl2/bl2_main.c b/bl2/bl2_main.c index 0fe82d91..018deb34 100644 --- a/bl2/bl2_main.c +++ b/bl2/bl2_main.c @@ -34,6 +34,9 @@ void bl2_main(void) auth_mod_init(); #endif /* TRUSTED_BOARD_BOOT */ + /* initialize boot source */ + bl2_plat_preload_setup(); + /* Load the subsequent bootloader images. */ next_bl_ep_info = bl2_load_images(); |