mcuboot
mcuboot copied to clipboard
Secure boot for 32-bit Microcontrollers!
zephyr is transition away from devicetree label property for nodes that are associated with devices. So remove it from "zephyr,cdc-acm-uart" nodes. Signed-off-by: Kumar Gala
Hello, I followed your guide, but I'm getting an error message after flashing the bootloader: ``` rst:0x7 (TG0WDT_SYS_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) configsip: 0, SPIWP:0xee clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 mode:DIO, clock div:2 load:0x3fff8a60,len:5904 load:0x40093000,len:19404 load:0x4009b800,len:6676 entry...
It is possible that image in the slot is so big that MCUboot swap metadata will interfere with its content during the swap operation. This patch introduces additional check to...
I have one task and I am beginner of mcu boot I am trying to build mcu boot hello world using stm32 nucleo f429zi I can build the code and...
When programming a device via SWD, the image trailer (and thus the magic bytes) is not set. This results in a `BOOT_MAGIC_UNSET` state, which is treated as confirmed in [boot_set_confirmed_multi](https://github.com/mcu-tools/mcuboot/blob/main/boot/bootutil/src/bootutil_public.c#L620)....
Fixed typos and grammar mistakes. Rephrased slightly unclear sentences. Fixed punctuation. Unified spaces after periods. Unified tenses used in listed changes. Signed-off-by: Francesco Domenico Servidio NOTE: No changes in the...
This PR adds support STM32 devices with 32byte flash write alignment. Possible after [#1217](https://github.com/mcu-tools/mcuboot/pull/1217) **Does it work** Why yes! I tested with a `nucleo_h743zi` with the following steps: - Built...
related to #1140 looks like `boot_is_header_valid()` is a very rough check regard sizes: it checks whether the header and image binaries fit in the slot. Slot must be able to...
If `BOOT_SERIAL_WAIT_FOR_DFU` is selected, the CPU shouldn't enter idle state, waiting for interrupt from the console because we expect booting if no mcumgr command is received within a configured timeout...
Made BOOT_SERIAL_WAIT_FOR_DFU depend on BOOT_SERIAL_CDC_ACM, such that wait feature can be used with CDC ACM DFU Fixed a typo as well Signed-off-by: Simon Iversen