Build: Fix CC312 init skip issue on Musca-B1/S1
Accidentally the initialization of CC312 crypto accelerator
was skipped on Musca boards. Therefore at execution the
CPU stuck in an infinite loop.
Signed-off-by: Tamas Ban <tamas.ban@arm.com>
Change-Id: I29e8c8b1ace300a7d44efb1dcd1ffe86e1becb21
diff --git a/bl2/ext/mcuboot/bl2_main.c b/bl2/ext/mcuboot/bl2_main.c
index fcaab36..d0f1577 100644
--- a/bl2/ext/mcuboot/bl2_main.c
+++ b/bl2/ext/mcuboot/bl2_main.c
@@ -96,6 +96,7 @@
/* Perform platform specific initialization */
if (boot_platform_init() != 0) {
+ BOOT_LOG_ERR("Platform init failed");
while (1)
;
}