Almir Okato | 54ef484 | 2023-03-07 17:56:53 -0300 | [diff] [blame^] | 1 | /* |
2 | * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: Apache-2.0 | ||||
5 | */ | ||||
6 | |||||
7 | #include <mcuboot_config/mcuboot_logging.h> | ||||
8 | |||||
9 | /** | ||||
10 | * Override the bootloader's print banner function from IDF. | ||||
11 | */ | ||||
12 | void __wrap_bootloader_print_banner(void) | ||||
13 | { | ||||
14 | MCUBOOT_LOG_INF("*** Booting MCUboot build %s ***", MCUBOOT_VER); | ||||
15 | } |