diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2021-01-25 12:17:57 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-01-29 10:36:48 -0500 |
commit | 9c3808debad6cae03850a93af8f3d1a6677ca8c7 (patch) | |
tree | 67e7247640cd1038b68652059f01f879c335e2f2 | |
parent | ef7db7a3e893b64ba5e15a0fb04b06356fc87459 (diff) | |
download | u-boot-9c3808debad6cae03850a93af8f3d1a6677ca8c7.tar.gz u-boot-9c3808debad6cae03850a93af8f3d1a6677ca8c7.tar.xz u-boot-9c3808debad6cae03850a93af8f3d1a6677ca8c7.zip |
avb: AVB_VERIFY depends on MMC
AVB Verified Boot uses functions related to MMC.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Igor Opaniuk <igor.opaniuk@foundries.io>
-rw-r--r-- | common/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 45535e3501..2bb3798f80 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -561,6 +561,7 @@ config HASH config AVB_VERIFY bool "Build Android Verified Boot operations" depends on LIBAVB + depends on MMC depends on PARTITION_UUIDS help This option enables compilation of bootloader-dependent operations, |