Merge branch 'feature/bootloader_date_log' into 'master'

Bootloader: print date and time to the banner on boot

Closes IDFGH-8229

See merge request espressif/esp-idf!20002
This commit is contained in:
Omar Chebib
2022-09-08 22:39:18 +08:00

View File

@@ -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
}