/* check_config.c * * Show configuration * * * Copyright (C) 2021 wolfSSL Inc. * * This file is part of wolfBoot. * * wolfBoot is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * wolfBoot is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA */ /* Option to enable sign tool debugging */ /* Must also define DEBUG_WOLFSSL in user_settings.h */ #include #include "src/libwolfboot.c" static int locked = 0; /* Mocks */ void hal_init(void) { } int hal_flash_write(haladdr_t address, const uint8_t *data, int len) { return 0; } int hal_flash_erase(haladdr_t address, int len) { return 0; } void hal_flash_unlock(void) { if (!locked) printf("Double unlock detected\n"); locked--; } void hal_flash_lock(void) { if (locked) printf("Double lock detected\n"); locked++; } void hal_prepare_boot(void) { } int spi_flash_sector_erase(uint32_t address) { return 0; } int spi_flash_read(uint32_t address, void *data, int len) { return 0; } int spi_flash_write(uint32_t address, const void *data, int len) { return 0; } /* End Mocks */ #define Min(A,B) ((A