mcuboot icon indicating copy to clipboard operation
mcuboot copied to clipboard

Secure boot for 32-bit Microcontrollers!

Results 311 mcuboot issues
Sort by recently updated
recently updated
newest added

Bumps [rexml](https://github.com/ruby/rexml) from 3.2.6 to 3.2.8. Release notes Sourced from rexml's releases. REXML 3.2.8 - 2024-05-16 Fixes Suppressed a warning REXML 3.2.7 - 2024-05-16 Improvements Improve parse performance by using...

dependencies
ruby

It tells about adding the 24KB scratch partition, not about storage partition.

1) Commit reduces and moves inclusions in general code; 2) Removal of sysflash.h from Zephyr source code where not needed.

stale

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.16.2 to 1.16.5. Release notes Sourced from nokogiri's releases. v1.16.5 / 2024-05-13 Security [CRuby] Vendored libxml2 is updated to address CVE-2024-34459. See GHSA-r95h-9x8f-r3f7 for more information. Dependencies...

dependencies
ruby

When `MCUBOOT_SWAP_SAVE_ENCTLV` is enabled, a comparison between a signed and an unsigned integer is made in `boot_read_enc_key`. This shouldn't cause any issue at runtime but might lead to a warning...

Before booting, It might be handy to see the version of the image we boot into.

- Modified **#if BOOT_MAX_ALIGN == 8** to **#if (BOOT_MAX_ALIGN == 8) || (BOOT_MAX_ALIGN == 16)** for boot_img_magic in boot/bootutil/src/bootutil_public.c, because STM32U5 supports 16 Byte alignment. - Provided **#if !defined( BOOT_MAX_ALIGN...

Description --- As discussed on https://github.com/mcu-tools/mcuboot/issues/1942, when swap using scratch is used, the image is currently decrypted while copying from the secondary slot to the scratch area. This means even...

Currently, when using swap-scratch upgrade strategy with encrypted firmware images, the scratch area has to be placed in internal flash memory, even when `BOOT_SWAP_SAVE_ENCTLV` is enabled, since MCUboot is decrypting...

For the Zephyr implementation, there is a separate file [single_loader.c](https://github.com/mcu-tools/mcuboot/blob/8dab2b975e14e00564eb62383448f70efd01f324/boot/zephyr/single_loader.c). I suppose my first question is why the single application slot configuration is treated separately from the multi-slot configuration at...