From ce1023de730ffa37beae46a5276061a74a041a09 Mon Sep 17 00:00:00 2001 From: Jerome Forissier Date: Wed, 2 Oct 2024 16:48:45 +0200 Subject: [PATCH] Make AVB_VERIFY depend on FASTBOOT AVB_BUF_ADDR, which is under "if AVB_VERIFY", defaults to FASTBOOT_BUF_ADDR. Therefore AVB_VERIFY should depend on FASTBOOT. Signed-off-by: Jerome Forissier Reviewed-by: Mattijs Korpershoek Tested-by: Tom Rini # Raspberry Pi 3 (32b, 64b, Reviewed-by: Simon Glass Link: https://lore.kernel.org/r/20241002144845.1439316-1-jerome.forissier@linaro.org Signed-off-by: Mattijs Korpershoek --- common/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/common/Kconfig b/common/Kconfig index 957de0c5c0..c011ab6e82 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -850,6 +850,7 @@ config AVB_VERIFY depends on LIBAVB depends on MMC depends on PARTITION_UUIDS + depends on FASTBOOT help This option enables compilation of bootloader-dependent operations, used by Android Verified Boot 2.0 library (libavb). Includes: -- 2.39.5