blob: 8e7d7fcab6467504aacbc0934b2d8123fddd6e8d [file] [log] [blame]
Almir Okato54ef4842023-03-07 17:56:53 -03001/*
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 */
12void __wrap_bootloader_print_banner(void)
13{
14 MCUBOOT_LOG_INF("*** Booting MCUboot build %s ***", MCUBOOT_VER);
15}