diff options
author | Jerome Forissier <jerome.forissier@linaro.org> | 2024-10-02 16:48:45 +0200 |
---|---|---|
committer | Mattijs Korpershoek <mkorpershoek@baylibre.com> | 2024-10-11 14:31:25 +0200 |
commit | ce1023de730ffa37beae46a5276061a74a041a09 (patch) | |
tree | cb57aaa5d82b645e72f8c618f2bec579fb302183 | |
parent | a404065479be2c1fe1167c3c91367e8194a69d1b (diff) | |
download | u-boot-ce1023de730ffa37beae46a5276061a74a041a09.tar.gz |
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 <jerome.forissier@linaro.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Tested-by: Tom Rini <trini@konsulko.com> # Raspberry Pi 3 (32b, 64b,
Reviewed-by: Simon Glass <sjg@chromium.org>
Link: https://lore.kernel.org/r/20241002144845.1439316-1-jerome.forissier@linaro.org
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
-rw-r--r-- | common/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 957de0c5c02..c011ab6e820 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: |