[U-Boot] [PATCH] cmd: image_info: Add checking of default FIT config
Bryan O'Donoghue
bryan.odonoghue at linaro.org
Tue Dec 18 14:45:55 UTC 2018
This patch adds a check for the default FIT config to iminfo. Once applied
any signing of the config will show a pass fail similar to rsa+/rsa-.
Output looks like this:
Hash(es) for Image 0 (kernel at 1): sha1+
Hash(es) for Image 1 (fdt at imx7s-warp.dtb): sha1+
Hash(es) for Image 2 (ramdisk at 1): sha1+
Hash(es) for Image 3 (bootscr): sha1+
Hash for default configuration: sha1,rsa2048:mbl-fit-rot-key+
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue at linaro.org>
Cc: Jun Nie <jun.nie at linaro.org>
Cc: Simon Glass <sjg at chromium.org>
Cc: Tom Rini <trini at konsulko.com>
---
cmd/bootm.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/cmd/bootm.c b/cmd/bootm.c
index c3a063474a..b3bd236165 100644
--- a/cmd/bootm.c
+++ b/cmd/bootm.c
@@ -244,6 +244,9 @@ static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
static int image_info(ulong addr)
{
+#if defined(CONFIG_FIT)
+ int cfg_noffset;
+#endif
void *hdr = (void *)addr;
printf("\n## Checking Image at %08lx ...\n", addr);
@@ -294,6 +297,20 @@ static int image_info(ulong addr)
return 1;
}
+ cfg_noffset = fit_conf_get_node(hdr, NULL);
+ if (!cfg_noffset) {
+ printf("Could not find configuration node: %s\n",
+ fdt_strerror(cfg_noffset));
+ return 1;
+ }
+
+ puts(" Hash for default configuration: ");
+ if (fit_config_verify(hdr, cfg_noffset)) {
+ puts("Unable to verify default fit config\n");
+ return 1;
+ }
+ puts("\n");
+
return 0;
#endif
default:
--
2.20.0
More information about the U-Boot
mailing list