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 */ __wrap_bootloader_print_banner(void)12void __wrap_bootloader_print_banner(void) 13 { 14 MCUBOOT_LOG_INF("*** Booting MCUboot build %s ***", MCUBOOT_VER); 15 } 16