Searched +full:1 +full:- +full:latest (Results 1 – 8 of 8) sorted by relevance
10 # http://www.apache.org/licenses/LICENSE-2.029 "1.3.1": "v1.3.1"34 "1.7.1": "v1.7.1"40 "0-dev": "0.0.0" # main41 "0-latest": "1.10.0" # latest stable release42 "1-latest": "1.10.0" # latest stable release44 "1.0-latest": "1.10.0"
1 # [Building and using MCUboot with Espressif's chips](#building-and-using-mcuboot-with-espressifs-c…3 The MCUBoot Espressif's port depends on HAL (Hardware Abstraction Layer) sources based on ESP-IDF4 or 3rd party frameworks as such as Zephyr-RTOS (`zephyrproject-rtos/hal_espressif/`) or NuttX RTOS5 (`espressif/esp-hal-3rdparty`). Building the MCUboot Espressif's port and its features is platform7 standalone build version means that ESP-IDF and its toolchain are used as source. For 3rd parties13 ## [SoC support availability](#soc-support-availability)17 | | ESP32 | ESP32-S2 | ESP32-C3 | ESP32-S3 | ESP32-C2 | ESP32-C6 | ESP32-H2 |18 | :----: | :-----: | :-----: | :-----: | :-----: | :---------: | :-----: | :-----: |24 [Memory map organization for OS compatibility](#memory-map-organization-for-os-compatibility).26 ## [Installing requirements and dependencies](#installing-requirements-and-dependencies)[all …]
11 1. MAJOR version when there are incompatible API changes.13 backward-compatible manner.14 3. PATCH version when there are backward-compatible bug fixes.16 We add pre-release tags using the format `MAJOR.MINOR.PATCH-rc1`.19 format `MAJOR.MINOR.PATCH-dev`.23 Before making a release, update the `docs/release-notes.md` file24 to describe the release. This should be a high-level description of29 various snippets in the `docs/release-notes.d` directory. After36 release candidate (a.b.c-rc1, followed by a.b.c-rc2 and the subsequent54 suffix `rcN` (with no dash) is accepted only for the pre-release versions[all …]
15 - `boot_partition`: for MCUboot itself16 - `slot0_partition`: the primary slot of Image 017 - `slot1_partition`: the secondary slot of Image 019 It is not recommended to use the swap-using-scratch algorithm of MCUboot, but22 and how to use the swap-using-scratch algorithm):24 - `scratch_partition`: the scratch slot27 MCUboot as your stage 1 bootloader, `boot_partition` must be configured31 `slot3_partition` for Image 1).45 pip3 install --user -r scripts/requirements.txt62 west build -b <board>[all …]
3 - Table of Contents22 - Add error when flash device fails to open.23 - Panic bootloader when flash device fails to open.24 - Fixed issue with serial recovery not showing image details for26 - Fixes issue with serial recovery in single slot mode wrongly28 - CDDL auto-generated function code has been replaced with zcbor function30 - Added currently running slot ID and maximum application size to32 - Make the ECDSA256 TLV curve agnostic and rename it to ECDSA_SIG.33 - imgtool: add P384 support along with SHA384.34 - espressif: refactor after removing IDF submodule[all …]
1 <!--2 - SPDX-License-Identifier: Apache-2.04 - Copyright (c) 2017-2020 Linaro LTD5 - Copyright (c) 2017-2019 JUUL Labs6 - Copyright (c) 2019-2023 Arm Limited8 - Original license:10 - Licensed to the Apache Software Foundation (ASF) under one11 - or more contributor license agreements. See the NOTICE file12 - distributed with this work for additional information13 - regarding copyright ownership. The ASF licenses this file[all …]
1 # Copyright (c) 2022-2023 Nordic Semiconductor ASA2 # SPDX-License-Identifier: Apache-2.011 - main14 - main16 - cron: 0 0 * * *35 group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}36 cancel-in-progress: true40 runs-on: ubuntu-latest44 options: '--entrypoint /bin/bash'46 - /home/runners/zephyrproject:/github/cache/zephyrproject[all …]
1 # Copyright (c) 2017-2020 Linaro Limited4 # SPDX-License-Identifier: Apache-2.09 comment "MCUboot-specific configuration options"90 bool "Elliptic curve digital signatures with curve P-256"134 default "root-ec-p256.pem" if BOOT_SIGNATURE_TYPE_ECDSA_P256135 default "root-ed25519.pem" if BOOT_SIGNATURE_TYPE_ED25519136 default "root-rsa-3072.pem" if BOOT_SIGNATURE_TYPE_RSA && BOOT_SIGNATURE_TYPE_RSA_LEN=3072137 default "root-rsa-2048.pem" if BOOT_SIGNATURE_TYPE_RSA && BOOT_SIGNATURE_TYPE_RSA_LEN=2048150 bool "Perform core cleanup before chain-load the application"154 This option instructs MCUboot to perform a clean-up of a set of[all …]