commit | ae09770946b3902136ed9a27910ae451fd585a6a | [log] [tgz] |
---|---|---|
author | George Beckstein <becksteing@embeddedplanet.com> | Tue Dec 01 22:08:12 2020 -0500 |
committer | Fabio Utzig <utzig@utzig.org> | Thu Dec 03 09:58:36 2020 -0300 |
tree | fa8914577407c03cf18ddb7928aecef58c4cf92d | |
parent | e75e33d9817fefb8ec37b5979f93e3dd41e81b8f [diff] |
Fix Mbed OS logging port when trace is disabled. This PR prevents the following build error: ``` ./mcuboot/boot/mbed/include/mcuboot_config/mcuboot_logging.h:65:30: error: 'IGNORE' was not declared in this scope 65 | #define MCUBOOT_LOG_ERR(...) IGNORE(__VA_ARGS__) ``` This build error occurs when the bootloader is configured with Mbed's logging library, mbed-trace, disabled or when a logging level other than "MCUBOOT_LOG_LEVEL_DEBUG" is used. Since "bootutil/ignore.h" was not included previously, the "IGNORE(...)" macro was undefined in this scope. Signed-off-by: George Beckstein <becksteing@embeddedplanet.com>
This is mcuboot version 1.8.0-dev
MCUboot is a secure bootloader for 32-bit MCUs. The goal of MCUboot is to define a common infrastructure for the bootloader, system flash layout on microcontroller systems, and to provide a secure bootloader that enables simple software upgrades.
MCUboot is operating system and hardware independent and relies on hardware porting layers from the operating. Currently, mcuboot works with both the Apache Mynewt and Zephyr operating systems, but more ports are planned in the future. RIOT is currently supported as a boot target with a complete port planned.
Instructions for different operating systems can be found here:
The issues being planned and worked on are tracked using GitHub issues. To participate please visit:
Issues were previously tracked on MCUboot JIRA , but it is now deprecated.
Information and documentation on the bootloader are stored within the source.
It was previously also documented on confluence: MCUBoot Confluence however, it is now deprecated and not currently maintained
For more information in the source, here are some pointers:
Developers welcome!