Hi @t2865k5
(1) How to only choose to verify u-boot without verifying the kernel image ?
You can disable kernel verification in uboot.
diff --git a/cmd/booti.c b/cmd/booti.c
index d820930fe8..e1122f3e38 100644
--- a/cmd/booti.c
+++ b/cmd/booti.c
@@ -78,7 +78,8 @@ static int booti_start(struct cmd_tbl *cmdtp, int flag, int argc,
if (ret != 0)
return 1;
-#if defined(CONFIG_IMX_HAB) && !defined(CONFIG_AVB_SUPPORT)
+#if 0
+
extern int authenticate_image(
uint32_t ddr_start, uint32_t raw_image_size);
if (authenticate_image(ld, image_size) != 0) {
(2) I have referred to the mx8m_secure_boot.txt but Authenticating kernel image is failed . Please check the imx8mplusSecureBoot.docx .
Try to authenticate the size for image: Image_pad_ivt.bin
Best regards
Harvey