commit | f08b6aabbac095235a354f4f2322ed6601add4a6 | [log] [tgz] |
---|---|---|
author | David Brown <david.brown@linaro.org> | Tue Jul 20 15:41:13 2021 -0600 |
committer | David Brown <david.brown@linaro.org> | Tue Jul 20 15:45:06 2021 -0600 |
tree | 16d98b0e8fb39af91de2de998c73108aef6090c5 | |
parent | 4f8091318b4026d14af9e5a7036825bff62fb612 [diff] |
wip: Add sim support for loaded images For developing new functionality, allow the simulator to test using a loaded image. For this particular case, for example, we could test ecdsa booting with the following: $ dd if=/dev/zero bs=128 of=header.bin $ dd if=/dev/random bs=1024 count=2 of=payload.bin $ cat header.bin payload.bin loaded.bin $ ../scripts/imgtool.py sign \ -k ../root-ec-p256.pem \ --align 8 \ --version 1.2.3 \ --header-size 128 \ -S 16384 \ loaded.bin loaded.suit $ cargo test \ --features "overwrite-only validate-primary-slot sig-ecdsa" \ -- --nocapture --test-threads 1 \ external_load Signed-off-by: David Brown <david.brown@linaro.org>
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!