summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/image-fit.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/common/image-fit.c b/common/image-fit.c
index 683c1a511d..199b4ed16a 100644
--- a/common/image-fit.c
+++ b/common/image-fit.c
@@ -343,6 +343,17 @@ void fit_image_print(const void *fit, int image_noffset, const char *p)
else
printf("%s\n", desc);
+ if (IMAGE_ENABLE_TIMESTAMP) {
+ time_t timestamp;
+
+ ret = fit_get_timestamp(fit, 0, &timestamp);
+ printf("%s Created: ", p);
+ if (ret)
+ printf("unavailable\n");
+ else
+ genimg_print_time(timestamp);
+ }
+
fit_image_get_type(fit, image_noffset, &type);
printf("%s Type: %s\n", p, genimg_get_type_name(type));
OpenPOWER on IntegriCloud