Bootloader: print date and time to the banner on boot

* Closes https://github.com/espressif/esp-idf/issues/9718
This commit is contained in:
Omar Chebib
2022-09-07 11:55:39 +08:00
parent 892437d829
commit 3a429b8b7a

View File

@@ -91,6 +91,6 @@ void bootloader_print_banner(void)
{ {
ESP_LOGI(TAG, "ESP-IDF %s 2nd stage bootloader", IDF_VER); ESP_LOGI(TAG, "ESP-IDF %s 2nd stage bootloader", IDF_VER);
#ifndef CONFIG_APP_REPRODUCIBLE_BUILD #ifndef CONFIG_APP_REPRODUCIBLE_BUILD
ESP_LOGI(TAG, "compile time " __TIME__); ESP_LOGI(TAG, "compile time " __DATE__ " " __TIME__);
#endif #endif
} }