Skip to content

Commit

Permalink
further work
Browse files Browse the repository at this point in the history
  • Loading branch information
FranciscoLlobet committed Feb 23, 2024
1 parent f23aaa0 commit 4bdf246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/mcuboot
Submodule mcuboot updated 50 files
+7 −5 boot/boot_serial/src/boot_serial.c
+2 −1 boot/bootutil/include/bootutil/boot_status.h
+2 −0 boot/bootutil/src/boot_record.c
+2 −1 boot/bootutil/src/bootutil_misc.c
+5 −3 boot/bootutil/src/bootutil_priv.h
+11 −1 boot/bootutil/src/loader.c
+38 −18 boot/bootutil/src/swap_move.c
+2 −0 boot/zcbor/add_zcbor_copy_version.sh
+205 −101 boot/zcbor/include/zcbor_common.h
+0 −69 boot/zcbor/include/zcbor_debug.h
+295 −193 boot/zcbor/include/zcbor_decode.h
+105 −152 boot/zcbor/include/zcbor_encode.h
+170 −0 boot/zcbor/include/zcbor_print.h
+99 −0 boot/zcbor/include/zcbor_tags.h
+244 −30 boot/zcbor/src/zcbor_common.c
+845 −225 boot/zcbor/src/zcbor_decode.c
+162 −177 boot/zcbor/src/zcbor_encode.c
+163 −0 boot/zephyr/CMakeLists.txt
+19 −1 boot/zephyr/Kconfig
+47 −0 boot/zephyr/Kconfig.firmware_loader
+1 −0 boot/zephyr/Kconfig.serial_recovery
+20 −0 boot/zephyr/boards/esp32c3_luatos_core.conf
+19 −0 boot/zephyr/boards/esp32s3_luatos_core.conf
+4 −0 boot/zephyr/boards/mimxrt1010_evk.conf
+4 −0 boot/zephyr/boards/mimxrt1015_evk.conf
+4 −0 boot/zephyr/boards/mimxrt1040_evk.conf
+12 −0 boot/zephyr/boards/nrf54l15pdk_nrf54l15_cpuapp.conf
+196 −0 boot/zephyr/firmware_loader.c
+83 −0 boot/zephyr/include/io/io.h
+18 −2 boot/zephyr/include/mcuboot_config/mcuboot_config.h
+11 −3 boot/zephyr/include/sysflash/sysflash.h
+211 −0 boot/zephyr/io.c
+11 −163 boot/zephyr/main.c
+2 −0 boot/zephyr/single_loader.c
+43 −0 boot/zephyr/sysbuild/CMakeLists.txt
+165 −0 boot/zig-freertos/flash_map_backend/flash_map_backend.h
+26 −0 boot/zig-freertos/os/os_malloc.h
+9 −0 boot/zig-freertos/sysflash/sysflash.h
+4 −1 docs/release-notes.d/boot-serial-echo.md
+7 −0 docs/release-notes.d/bootutil-sector.md
+3 −0 docs/release-notes.d/zephyr-encryption-single.md
+1 −0 docs/release-notes.d/zephyr-estimated-sysbuild.mc
+4 −0 docs/release-notes.d/zephyr-firmware-loader.md
+1 −0 docs/release-notes.d/zephyr-mass-erase.md
+1 −0 docs/release-notes.d/zephyr-mbedtls-kconfig.md
+7 −2 docs/release-notes.d/zephyr-usb.md
+9 −2 scripts/imgtool/image.py
+1 −0 scripts/imgtool/main.py
+1 −0 scripts/requirements.txt
+1 −0 zephyr/module.yml

0 comments on commit 4bdf246

Please sign in to comment.