diff options
author | Simon Glass <sjg@chromium.org> | 2020-03-18 11:44:03 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-04-01 07:45:09 -0600 |
commit | c3aa81e35cc53fcd825e89510cd648288e0b6b92 (patch) | |
tree | 8181f82b6c7a2cb3a35809f1bb7d1caa1da3c649 /tools/fdt_host.h | |
parent | 8a9d03732e6d0f68107c80919096e7cf956dcb3d (diff) | |
download | u-boot-c3aa81e35cc53fcd825e89510cd648288e0b6b92.tar.gz |
fit_check_sign: Allow selecting the configuration to verify
This tool always verifies the default configuration. It is useful to be
able to verify a specific one. Add a command-line flag for this and plumb
the logic through.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/fdt_host.h')
-rw-r--r-- | tools/fdt_host.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/fdt_host.h b/tools/fdt_host.h index 99b009b221..15c07c7a96 100644 --- a/tools/fdt_host.h +++ b/tools/fdt_host.h @@ -27,6 +27,7 @@ */ int fdt_remove_unused_strings(const void *old, void *new); -int fit_check_sign(const void *working_fdt, const void *key); +int fit_check_sign(const void *fit, const void *key, + const char *fit_uname_config); #endif /* __FDT_HOST_H__ */ |