summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cmd/booti.c2
-rw-r--r--configs/imx8mq_phanbell_androidthings_defconfig1
2 files changed, 2 insertions, 1 deletions
diff --git a/cmd/booti.c b/cmd/booti.c
index b605e9492b3..e7039b753fc 100644
--- a/cmd/booti.c
+++ b/cmd/booti.c
@@ -44,7 +44,7 @@ static int booti_start(cmd_tbl_t *cmdtp, int flag, int argc,
if (ret != 0)
return 1;
-#ifdef CONFIG_SECURE_BOOT
+#if defined(CONFIG_SECURE_BOOT) && !defined(CONFIG_AVB_SUPPORT)
extern int authenticate_image(
uint32_t ddr_start, uint32_t raw_image_size);
if (authenticate_image(ld, image_size) != 0) {
diff --git a/configs/imx8mq_phanbell_androidthings_defconfig b/configs/imx8mq_phanbell_androidthings_defconfig
index 6ad2f407107..ce1a1821850 100644
--- a/configs/imx8mq_phanbell_androidthings_defconfig
+++ b/configs/imx8mq_phanbell_androidthings_defconfig
@@ -71,3 +71,4 @@ CONFIG_USB_DWC3_GADGET=y
CONFIG_CMD_UUID=y
CONFIG_LIB_RAND=y
CONFIG_AVB_SUPPORT=y
+CONFIG_SECURE_BOOT=y