David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 1 | # MCUboot |
| 2 | |
| 3 | ## Overview |
| 4 | |
David Brown | e5f2d1c | 2017-09-12 11:37:29 -0600 | [diff] [blame] | 5 | MCUboot is a secure bootloader for 32-bit MCUs. The goal of MCUboot is to |
David Brown | c20b997 | 2017-09-11 13:06:38 -0600 | [diff] [blame] | 6 | define a common infrastructure for the bootloader, system flash layout on |
| 7 | microcontroller systems, and to provide a secure bootloader that enables |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 8 | easy software upgrade. |
| 9 | |
Sigvart M. Hovland | 68b3053 | 2018-09-29 18:58:55 +0200 | [diff] [blame] | 10 | MCUboot is operating system and hardware independent and relies on |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 11 | hardware porting layers from the operating system it works with. Currently |
| 12 | MCUboot works with both the Apache Mynewt, and Zephyr operating systems, but |
| 13 | more ports are planned in the future. RIOT is currently supported as a boot |
| 14 | target with a complete port planned. |
| 15 | |
David Brown | 986c212 | 2021-04-01 14:39:23 -0600 | [diff] [blame] | 16 | MCUboot is an open governance project. See the [membership |
| 17 | list](https://github.com/mcu-tools/mcuboot/wiki/Members) for current |
| 18 | members, and the |
| 19 | [charter](https://github.com/mcu-tools/mcuboot/wiki/MCUboot-Project-Charter) |
| 20 | for more details. |
| 21 | |
David Brown | d2fcc21 | 2017-09-11 14:47:48 -0600 | [diff] [blame] | 22 | ## Contents |
| 23 | |
Ruth Fuchss | 4023d62 | 2019-11-01 16:32:20 +0100 | [diff] [blame] | 24 | - General - this document |
Fabio Utzig | 4dce6aa | 2018-02-12 15:31:32 -0200 | [diff] [blame] | 25 | - [Release notes](release-notes.md) |
Ruth Fuchss | 4023d62 | 2019-11-01 16:32:20 +0100 | [diff] [blame] | 26 | - [Bootloader design](design.md) |
| 27 | - [Encrypted images](encrypted_images.md) |
| 28 | - [imgtool](imgtool.md) - image signing and key management |
David Brown | 8f057ca | 2019-12-12 16:19:55 -0700 | [diff] [blame] | 29 | - [ecdsa](ecdsa.md) - Information about ECDSA signature formats |
Carles Cufi | 3b61e70 | 2018-01-23 15:43:46 +0100 | [diff] [blame] | 30 | - Usage instructions: |
Fabio Utzig | 4dce6aa | 2018-02-12 15:31:32 -0200 | [diff] [blame] | 31 | - [Zephyr](readme-zephyr.md) |
| 32 | - [Mynewt](readme-mynewt.md) |
| 33 | - [RIOT](readme-riot.md) |
George Beckstein | d82afbf | 2020-10-29 17:32:11 -0400 | [diff] [blame] | 34 | - [Mbed-OS](readme-mbed.md) |
Ruth Fuchss | 4023d62 | 2019-11-01 16:32:20 +0100 | [diff] [blame] | 35 | - [Patch submission](SubmittingPatches.md) - information |
| 36 | on how to contribute to mcuboot |
David Brown | d2fcc21 | 2017-09-11 14:47:48 -0600 | [diff] [blame] | 37 | - Testing |
Ruth Fuchss | 4023d62 | 2019-11-01 16:32:20 +0100 | [diff] [blame] | 38 | - [Zephyr](testplan-zephyr.md) test plan |
| 39 | - [mynewt](testplan-mynewt.md) test plan |
| 40 | - [Release process](release.md) |
David Brown | d2fcc21 | 2017-09-11 14:47:48 -0600 | [diff] [blame] | 41 | |
Fabio Utzig | 4dce6aa | 2018-02-12 15:31:32 -0200 | [diff] [blame] | 42 | There is also a document about [signed images](signed_images.md) that is out |
| 43 | of date. You should use `imgtool.py` instead of these documents. |
David Brown | d2fcc21 | 2017-09-11 14:47:48 -0600 | [diff] [blame] | 44 | |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 45 | ## Roadmap |
| 46 | |
Sigvart M. Hovland | 68b3053 | 2018-09-29 18:58:55 +0200 | [diff] [blame] | 47 | The issues being planned and worked on are tracked using GitHub issues. To participate |
David Brown | c20b997 | 2017-09-11 13:06:38 -0600 | [diff] [blame] | 48 | please visit: |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 49 | |
Fabio Utzig | de1d72d | 2020-11-10 12:35:04 -0300 | [diff] [blame] | 50 | [MCUboot Issues](https://github.com/mcu-tools/mcuboot/issues) |
Sigvart M. Hovland | 68b3053 | 2018-09-29 18:58:55 +0200 | [diff] [blame] | 51 | |
| 52 | ~~Issues were previously tracked on [MCUboot JIRA](https://runtimeco.atlassian.net/projects/MCUB/summary) |
| 53 | , but it is now deprecated.~~ |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 54 | |
David Brown | c20b997 | 2017-09-11 13:06:38 -0600 | [diff] [blame] | 55 | ## Browsing |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 56 | |
Sigvart M. Hovland | 68b3053 | 2018-09-29 18:58:55 +0200 | [diff] [blame] | 57 | Information and documentation on the bootloader is stored within the source. |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 58 | |
Sigvart M. Hovland | 68b3053 | 2018-09-29 18:58:55 +0200 | [diff] [blame] | 59 | ~~It was previously also documented on confluence: [Confluence page](https://runtimeco.atlassian.net/wiki/discover/all-updates) |
| 60 | , but it is now deprecated and not currently maintained~~ |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 61 | |
David Brown | c20b997 | 2017-09-11 13:06:38 -0600 | [diff] [blame] | 62 | For more information in the source, here are some pointers: |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 63 | |
David Brown | fe0bfcf | 2021-05-14 10:12:10 -0600 | [diff] [blame] | 64 | - [boot/bootutil](https://github.com/mcu-tools/mcuboot/tree/main/boot/bootutil): The core of the bootloader itself. |
| 65 | - [boot/boot\_serial](https://github.com/mcu-tools/mcuboot/tree/main/boot/boot_serial): Support for serial upgrade within the bootloader itself. |
| 66 | - [boot/zephyr](https://github.com/mcu-tools/mcuboot/tree/main/boot/zephyr): Port of the bootloader to Zephyr |
| 67 | - [boot/mynewt](https://github.com/mcu-tools/mcuboot/tree/main/boot/mynewt): Mynewt bootloader app |
| 68 | - [boot/mbed](https://github.com/mcu-tools/mcuboot/tree/main/boot/mbed): Port of the bootloader to Mbed-OS |
| 69 | - [imgtool](https://github.com/mcu-tools/mcuboot/tree/main/scripts/imgtool.py): A tool to securely sign firmware images for booting by MCUboot. |
| 70 | - [sim](https://github.com/mcu-tools/mcuboot/tree/main/sim): A bootloader simulator for testing and regression |
David Brown | 12b9ded | 2017-09-11 13:04:34 -0600 | [diff] [blame] | 71 | |
| 72 | ## Joining |
| 73 | |
| 74 | Developers welcome! |
| 75 | |
Fabio Utzig | 970840c | 2020-01-22 12:26:04 -0300 | [diff] [blame] | 76 | * [Our developer mailing list](https://groups.io/g/MCUBoot) |
Francesco Servidio | 1848863 | 2021-10-20 14:57:50 +0200 | [diff] [blame] | 77 | * [Our Slack channel](https://mcuboot.slack.com/) <br /> |
| 78 | Get [your invite](https://join.slack.com/t/mcuboot/shared_invite/MjE2NDcwMTQ2MTYyLTE1MDA4MTIzNTAtYzgyZTU0NjFkMg) |
David Brown | 986c212 | 2021-04-01 14:39:23 -0600 | [diff] [blame] | 79 | * [Current members](https://github.com/mcu-tools/mcuboot/wiki/Members) |
| 80 | * [Project charter](https://github.com/mcu-tools/mcuboot/wiki/MCUboot-Project-Charter) |