diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_bootm.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index e6b8b0f..7e3558d 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1910,6 +1910,15 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc, return 1; #endif +#ifdef CONFIG_SECURE_BOOT + extern uint32_t authenticate_image( + uint32_t ddr_start, uint32_t image_size); + if (authenticate_image(images->ep, zi_end - zi_start) == 0) { + printf("Authenticate zImage Fail, Please check\n"); + return 1; + } +#endif + return 0; } |