Skip to content

Commit

Permalink
Merge branch 'feature/bootloader_date_log' into 'master'
Browse files Browse the repository at this point in the history
Bootloader: print date and time to the banner on boot

Closes IDFGH-8229

See merge request espressif/esp-idf!20002
  • Loading branch information
o-marshmallow committed Sep 8, 2022
2 parents cf59a8a + 3a429b8 commit 3ffa2ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/bootloader_support/src/bootloader_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 3ffa2ad

Please sign in to comment.