From 3a429b8b7a422d23d26a83a465111839822a25c4 Mon Sep 17 00:00:00 2001 From: Omar Chebib Date: Wed, 7 Sep 2022 11:55:39 +0800 Subject: [PATCH] Bootloader: print date and time to the banner on boot * Closes https://github.com/espressif/esp-idf/issues/9718 --- components/bootloader_support/src/bootloader_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bootloader_support/src/bootloader_init.c b/components/bootloader_support/src/bootloader_init.c index b4f112e383..7567511180 100644 --- a/components/bootloader_support/src/bootloader_init.c +++ b/components/bootloader_support/src/bootloader_init.c @@ -91,6 +91,6 @@ void bootloader_print_banner(void) { ESP_LOGI(TAG, "ESP-IDF %s 2nd stage bootloader", IDF_VER); #ifndef CONFIG_APP_REPRODUCIBLE_BUILD - ESP_LOGI(TAG, "compile time " __TIME__); + ESP_LOGI(TAG, "compile time " __DATE__ " " __TIME__); #endif }