diff options
author | Igor Opaniuk <igor.opaniuk@linaro.org> | 2018-06-03 21:56:37 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-06-18 13:55:13 -0400 |
commit | 3330584d2c5247d65744939c139160502b4b8c87 (patch) | |
tree | d4b7d21f4eb42391ae5425616ba1aa9986e142a0 /lib/Kconfig | |
parent | d8f9d2af96b38f494b3991d5021d72f7c3cec54c (diff) | |
download | u-boot-3330584d2c5247d65744939c139160502b4b8c87.tar.gz |
avb2.0: integrate avb 2.0 into the build system
Integrate libavb into the build system. Introduce CONFIG_LIBAVB
build option.
Signed-off-by: Igor Opaniuk <igor.opaniuk@linaro.org>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index dd54516f30..a77bf1c688 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -187,6 +187,20 @@ config TPM endmenu +menu "Android Verified Boot" + +config LIBAVB + bool "Android Verified Boot 2.0 support" + depends on ANDROID_BOOT_IMAGE + default n + help + This enables support of Android Verified Boot 2.0 which can be used + to assure the end user of the integrity of the software running on a + device. Introduces such features as boot chain of trust, rollback + protection etc. + +endmenu + menu "Hashing Support" config SHA1 |