diff options
author | Igor Opaniuk <igor.opaniuk@linaro.org> | 2018-07-17 14:33:25 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-24 09:25:23 -0400 |
commit | b0aa74a2640cd1be1d9bdfd8024ed3faa119e447 (patch) | |
tree | e8e57744240d4ddd593713153c1fec7ae6f11d07 /doc/README.avb2 | |
parent | 149c21b098dafc5a2ae619555a844e8d0a9523f6 (diff) |
avb2.0: add proper dependencies
1. Since libavb library alone is highly portable, introduce dedicated
Kconfig symbol for AVB bootloader-dependent operations, so it's possible
to build libavb separately. AVB bootloader-dependent operations include:
* Helpers to process strings in order to build OS bootargs.
* Helpers to access MMC, similar to drivers/fastboot/fb_mmc.c.
* Helpers to alloc/init/free avb ops.
2. Add CONFIG_FASTBOOT dependency, as fastboot buffer is
re-used in partition verification operations.
Reported-by: Eugeniu Rosca <rosca.eugeniu@gmail.com>
Signed-off-by: Igor Opaniuk <igor.opaniuk@linaro.org>
Reviewed-by: Eugeniu Rosca <rosca.eugeniu@gmail.com>
Tested-by: Eugeniu Rosca <rosca.eugeniu@gmail.com>
Diffstat (limited to 'doc/README.avb2')
-rw-r--r-- | doc/README.avb2 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/README.avb2 b/doc/README.avb2 index 67784b529e4..120279fedbe 100644 --- a/doc/README.avb2 +++ b/doc/README.avb2 @@ -58,6 +58,7 @@ Slot verification result: ERROR_IO ----------------------------------- The following options must be enabled: CONFIG_LIBAVB=y +CONFIG_AVB_VERIFY=y CONFIG_CMD_AVB=y |