From: Simon Glass Date: Wed, 17 Jul 2013 03:10:01 +0000 (-0700) Subject: image: Display FIT timestamp when booting X-Git-Tag: v2013.10-rc1~25 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1fd1e2f69fdfb99bac792beed8b208d451acb598;p=u-boot image: Display FIT timestamp when booting The timestamp is shown in fit_print_contents() but for some reason not in fit_image_print(). This seems to be an oversight, since it is the latter which is used by bootm. Add timestamp printing in this case. (There is code duplication in these two function, for looking at in a future patch). Signed-off-by: Simon Glass --- 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, ×tamp); + 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));