Explorar o código

FIT: make iminfo check hashes of all images in FIT, return 1 on failed check

Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
Bartlomiej Sieka %!s(int64=16) %!d(string=hai) anos
pai
achega
a4f243452c
Modificáronse 1 ficheiros con 6 adicións e 0 borrados
  1. 6 0
      common/cmd_bootm.c

+ 6 - 0
common/cmd_bootm.c

@@ -854,6 +854,12 @@ static int image_info (ulong addr)
 		}
 
 		fit_print_contents (hdr);
+
+		if (!fit_all_image_check_hashes (hdr)) {
+			puts ("Bad hash in FIT image!\n");
+			return 1;
+		}
+
 		return 0;
 #endif
 	default: