diff options
Diffstat (limited to 'common/image-fit.c')
| -rw-r--r-- | common/image-fit.c | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/common/image-fit.c b/common/image-fit.c index 683c1a511..199b4ed16 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)); |