diff options
| author | Tom Rini <[email protected]> | 2024-02-15 10:26:24 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-02-15 10:26:24 -0500 |
| commit | 9e00b6993f724da9699ef12573307afea8c19284 (patch) | |
| tree | 7c1fb6054ee911acd3a8a8674653866ad541ef89 /include | |
| parent | 77ff61a5bb437b5b19c50d8791f14a3b917e882c (diff) | |
| parent | e2f6270f2da844d598555702d3af4f2e3fae3f9f (diff) | |
Merge tag 'u-boot-dfu-20240215' of https://source.denx.de/u-boot/custodians/u-boot-dfu
u-boot-dfu-20240215
- Fix avb_verify command with SD cards
- Add u-boot-dfu maintainer tree for AB/AVB
- Avb: report verified boot state based on lock state
- Misc avb refactors improve code quality
Diffstat (limited to 'include')
| -rw-r--r-- | include/avb_verify.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/avb_verify.h b/include/avb_verify.h index 1e787ba6668..5d998b5a302 100644 --- a/include/avb_verify.h +++ b/include/avb_verify.h @@ -1,8 +1,6 @@ - +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2018, Linaro Limited - * - * SPDX-License-Identifier: GPL-2.0+ */ #ifndef _AVB_VERIFY_H @@ -54,7 +52,8 @@ char *avb_set_enforce_verity(const char *cmdline); char *avb_set_ignore_corruption(const char *cmdline); char *append_cmd_line(char *cmdline_orig, char *cmdline_new); - +const char *str_avb_io_error(AvbIOResult res); +const char *str_avb_slot_error(AvbSlotVerifyResult res); /** * ============================================================================ * I/O helper inline functions |
