/mcuboot-3.6.0/ |
D | Cargo.lock | 3 version = 3 7 version = "0.7.5" 20 version = "0.7.18" 29 version = "0.2.14" 40 version = "0.13.0" 46 version = "0.1.0" 69 version = "3.12.0" 75 version = "1.4.3" 81 version = "1.0.73" 87 version = "1.0.0" [all …]
|
/mcuboot-3.6.0/ptest/ |
D | Cargo.lock | 3 version = 3 7 version = "0.17.0" 16 version = "1.0.2" 22 version = "0.7.18" 31 version = "0.2.14" 42 version = "1.1.0" 48 version = "0.3.65" 63 version = "1.0.73" 69 version = "1.0.0" 75 version = "0.4.19" [all …]
|
/mcuboot-3.6.0/ci/ |
D | compare_versions.py | 3 # Licensed under the Apache License, Version 2.0 (the "License"); 15 from packaging.version import parse, InvalidVersion 20 from packaging.version import LegacyVersion 30 parser.add_argument('--old', help='Version currently in use') 31 parser.add_argument('--new', help='New version to publish') 38 # packaging>=22 only supports PEP-440 version numbers, and a non-valid version 40 # LegacyVersion object if the given version string failed to parse as PEP-440, 44 for version in [args.old, args.new]: 46 versions.append(parse(version)) 48 print("Invalid version parsed: {}".format(version)) [all …]
|
D | imgtool_run.sh | 3 # Licensed under the Apache License, Version 2.0 (the "License"); 33 last_release=$(pip show imgtool | grep "Version: " | cut -d" " -f2) 40 echo "Imgtool version not changed; will not publish"
|
/mcuboot-3.6.0/docs/ |
D | release.md | 5 ## Version numbering 7 MCUboot uses [semantic versioning][semver], where version numbers 11 1. MAJOR version when there are incompatible API changes. 12 2. MINOR version when new functionalities were added in a 14 3. PATCH version when there are backward-compatible bug fixes. 18 In the documentation, we mark an MCUBoot development version using the 47 It requires its version to be updated by editing 48 `scripts/imgtool/__init__.py` and modifying the exported version: 53 This version should match the current release number of MCUboot. The 65 new release version, including updates to the pseudo keys [all …]
|
D | release-notes.md | 6 ## Version 2.0.0 50 - zcbor library files have been updated to version 0.7.0 69 ## Version 1.10.0 101 ## Version 1.9.0 126 - Remove zephyr example test running in shell. The Go version is 133 ## Version 1.8.0 171 ## Version 1.7.0 208 release. It was tested as of has 7a3b253ce. This version of MCUboot also 210 `CONFIG_MCUBOOT_CLEANUP_ARM_CORE` while using that version. 212 ## Version 1.6.0 [all …]
|
D | readme-riot.md | 9 In this first version, a prebuilt Mynewt binary is downloaded at 15 In the next version, it is planned to compile MCUboot using RIOT, 30 version information, and trailer type-length-value records (TLVs) with
|
D | imgtool.md | 65 -v, --version TEXT [required] 68 it from the image version. 99 The main arguments given are the key file generated above, a version 125 which the current image depends on. The `image_version` is the minimum version 127 image depends on Image 1 which version has to be at least 1.2.3+0.
|
D | Gemfile | 3 # Hello! This is where you manage which Jekyll version is used to run. 4 # When you want to use a different version, change it below, save the
|
/mcuboot-3.6.0/ext/mbedtls-asn1/include/mbedtls/ |
D | version.h | 2 * \file version.h 4 * \brief Run-time version information 10 * Licensed under the Apache License, Version 2.0 (the "License"); you may 23 * This set of run-time variables can be used to determine the version number of 24 * the Mbed TLS library used. Compile-time version defines for the same can be 39 * Get the version number. 41 * \return The constructed version number in the format 47 * Get the version string ("x.y.z"). 55 * Get the full version string ("mbed TLS x.y.z"). 57 * \param string The string that will receive the value. The mbed TLS version [all …]
|
D | build_info.h | 13 * Licensed under the Apache License, Version 2.0 (the "License"); you may 30 * This set of compile-time defines can be used to determine the version number 32 * version.h 36 * The version number x.y.z is split into three parts. 44 * The single version number has the following structure: 46 * Major version | Minor version | Patch version 65 #error "Invalid config version, defined value of MBEDTLS_CONFIG_VERSION is unsupported"
|
/mcuboot-3.6.0/boot/mynewt/mcuboot_config/ |
D | syscfg.yml | 5 # to you under the Apache License, Version 2.0 (the 80 - version: 81 Prevent downgrades by enforcing incrementing version numbers. 82 When this option is set, any upgrade must have greater major version 83 or greater minor version with equal major version. This mechanism 84 only protects against some attacks against version downgrades (for 85 example, a JTAG could be used to write an older version). 87 security counter is used for version eligibility check instead of pure 88 version. When this option is set, any upgrade must have greater or 94 - version [all …]
|
/mcuboot-3.6.0/sim/src/ |
D | depends.rs | 11 /// Generate a version for this particular image. The slot indicates 18 /// Return the image ID of the other version. 23 /// be meaningful version numbers. The size field is the image number we 69 /// Should this be considered a downgrade (cause the version number to 82 /// Provide a dependency that matches the old version of the other 95 /// The current version should be held. 175 /// Generate an image version based on some key information. The image 176 /// number influences the major version number (by an arbitrary factor),
|
/mcuboot-3.6.0/scripts/imgtool/ |
D | image.py | 7 # Licensed under the Apache License, Version 2.0 (the "License"); 23 from . import version as versmod 140 def __init__(self, version=None, header_size=IMAGE_HEADER_SIZE, argument 150 self.version = version or versmod.decode_version("0") 187 # generate it from the version number 188 self.security_counter = ((self.version.major << 24) 189 + (self.version.minor << 16) 190 + self.version.revision) 195 return "<Image version={}, header_size={}, security_counter={}, \ 199 self.version, [all …]
|
D | boot_record.py | 6 # Licensed under the Apache License, Version 2.0 (the "License"); 32 VERSION = 4 variable in SwComponent 43 SwComponent.VERSION: sw_version,
|
D | version.py | 5 # Licensed under the Apache License, Version 2.0 (the "License"); 35 """Decode the version string, which should be of the form maj.min.rev+build 46 msg = "Invalid version number, should be maj.min.rev+build with later "
|
D | main.py | 8 # Licensed under the Apache License, Version 2.0 (the "License"); 27 from imgtool.version import decode_version 217 ret, version, digest = image.Image.verify(imgfile, key) 220 print("Image version: {}.{}.{}+{}".format(*version)) 377 'keyword to automatically generate it from the image version.') 378 @click.option('-v', '--version', callback=validate_version, required=True) 406 def sign(key, public_key_format, align, version, pad_sig, header_size, argument 417 img = image.Image(version=decode_version(version), header_size=header_size, 506 @click.command(help='Print imgtool version information') 507 def version(): function [all …]
|
/mcuboot-3.6.0/boot/zephyr/ |
D | Kconfig | 245 If y, mcuboot selects the newest valid image based on the image version 254 If y, mcuboot selects the newest valid image based on the image version 618 bool "Use build number while comparing image version" 622 By default, the image version comparison relies only on version major, 634 Prevent downgrades by enforcing incrementing version numbers. 635 When this option is set, any upgrade must have greater major version 636 or greater minor version with equal major version. This mechanism 637 only protects against some attacks against version downgrades (for 638 example, a JTAG could be used to write an older version). 641 bool "Use image security counter instead of version number" [all …]
|
/mcuboot-3.6.0/.github/workflows/ |
D | zephyr_build.yaml | 21 description: 'Which Zephyr version to checkout?' 25 description: 'Which MCUBoot version to checkout?' 92 echo "Using Zephyr version: ${{ env.ZEPHYR_VERSION }}" 93 echo "Using Mcuboot version: ${{ env.MCUBOOT_VERSION }}"
|
/mcuboot-3.6.0/boot/mbed/include/sysflash/ |
D | sysflash.h | 1 /* Manual version of auto-generated version. */
|
/mcuboot-3.6.0/boot/bootutil/src/ |
D | encrypted.c | 107 int version; in parse_ec256_enckey() local 120 version = 0; in parse_ec256_enckey() 121 if (mbedtls_asn1_get_int(p, end, &version) || version != 0) { in parse_ec256_enckey() 149 version = 0; in parse_ec256_enckey() 150 if (mbedtls_asn1_get_int(p, end, &version) || version != 1) { in parse_ec256_enckey() 184 int version; in parse_x25519_enckey() local 197 version = 0; in parse_x25519_enckey() 198 if (mbedtls_asn1_get_int(p, end, &version) || version != 0) { in parse_x25519_enckey()
|
/mcuboot-3.6.0/sim/ |
D | Cargo.toml | 3 version = "0.1.0" 40 rand = { version = "0.8", features = ["small_rng"] } 52 aes = { version = "0.7.4", features = ["ctr"] }
|
/mcuboot-3.6.0/boot/cypress/MCUBootApp/config/ |
D | mcuboot_crypto_acc_config.h | 5 * Licensed under the Apache License, Version 2.0 (the "License"); 20 * \version 1.1
|
/mcuboot-3.6.0/boot/cypress/MCUBootApp/sysflash/ |
D | sysflash.h | 1 /* Manual version of auto-generated version. */
|
/mcuboot-3.6.0/boot/espressif/port/esp32s2/ |
D | bootloader.conf | 15 # When enabled, prevents updating image to an older version 18 # counter (defined using imgtool) instead of only image version
|