/mcuboot-latest/ci/ |
D | compare_versions.py | 15 from packaging.version import parse, InvalidVersion 20 from packaging.version import LegacyVersion 44 for version in [args.old, args.new]: 46 versions.append(parse(version)) 48 print("Invalid version parsed: {}".format(version)) 52 for version in [old, new]: 53 if isinstance(version, LegacyVersion): 54 print("Invalid version parsed: {}".format(version))
|
D | fih-tests_run.sh | 25 source lib/ext/tf-m-tests/version.txt &&\ 29 git checkout $version &&\
|
/mcuboot-latest/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 = "2.5.0" 69 version = "1.0.73" 75 version = "1.0.0" [all …]
|
D | Cargo.toml | 3 version = "0.1.0" 17 version = "4.0"
|
/mcuboot-latest/ |
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-latest/docs/ |
D | release.md | 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 70 There is a version file used by Zephyr builds to indicate the version [all …]
|
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
|
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
|
/mcuboot-latest/sim/simflash/ |
D | Cargo.toml | 3 version = "0.1.0"
|
/mcuboot-latest/scripts/imgtool/ |
D | image.py | 23 from . import version as versmod 47 from . import version as versmod, keys 258 def __init__(self, version=None, header_size=IMAGE_HEADER_SIZE, argument 272 self.version = version or versmod.decode_version("0") 312 self.security_counter = ((self.version.major << 24) 313 + (self.version.minor << 16) 314 + self.version.revision) 323 self.version, 501 image_version = (str(self.version.major) + '.' 502 + str(self.version.minor) + '.' [all …]
|
D | main.py | 31 from imgtool.version import decode_version 229 ret, version, digest, signature = image.Image.verify(imgfile, key) 232 print("Image version: {}.{}.{}+{}".format(*version)) 446 def sign(key, public_key_format, align, version, pad_sig, header_size, argument 458 img = image.Image(version=decode_version(version), header_size=header_size, 529 compressed_img = image.Image(version=decode_version(version), 605 def version(): function 621 imgtool.add_command(version)
|
/mcuboot-latest/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-latest/scripts/ |
D | setup.py | 9 version=imgtool_version,
|
/mcuboot-latest/sim/ |
D | Cargo.toml | 3 version = "0.1.0" 41 rand = { version = "0.8", features = ["small_rng"] } 53 aes = { version = "0.7.4", features = ["ctr"] }
|
/mcuboot-latest/docs/release-notes.d/ |
D | espressif-idf-version-checking.md | 1 - Added verification for supported IDF-based HAL version.
|
/mcuboot-latest/boot/zcbor/ |
D | add_zcbor_copy_version.sh | 14 ' "$2" "$(zcbor --version)"; cat $1;)" > $1
|
/mcuboot-latest/ext/fiat/ |
D | METADATA | 9 version: "4441785fb44b88bb6943ddbf639d872c8c903281"
|
/mcuboot-latest/scripts/tests/ |
D | test_compression.py | 45 img = Image(version=VERSION, header_size=HEADER_SIZE, slot_size=SLOT_SIZE, pad_header=True)
|
/mcuboot-latest/boot/espressif/port/esp32c3/ld/ |
D | bootloader.ld | 37 *(.gnu.version) 142 *(.gnu.version)
|
/mcuboot-latest/boot/espressif/port/esp32s2/ld/ |
D | bootloader.ld | 37 *(.gnu.version) 142 *(.gnu.version)
|
/mcuboot-latest/boot/espressif/port/esp32s3/ld/ |
D | bootloader.ld | 37 *(.gnu.version) 142 *(.gnu.version)
|
/mcuboot-latest/sim/src/ |
D | tlv.rs | 91 fn add_dependency(&mut self, id: u8, version: &ImageVersion); in add_dependency() 140 version: ImageVersion, field 360 fn add_dependency(&mut self, id: u8, version: &ImageVersion) { in add_dependency() 363 version: version.clone(), in add_dependency() 452 protected_tlv.push(dep.version.major); in make_tlv() 453 protected_tlv.push(dep.version.minor); in make_tlv() 454 protected_tlv.write_u16::<LittleEndian>(dep.version.revision).unwrap(); in make_tlv() 455 protected_tlv.write_u32::<LittleEndian>(dep.version.build_num).unwrap(); in make_tlv()
|
/mcuboot-latest/boot/mbed/ |
D | mcuboot_imgtool.cmake | 28 set(MCUBOOT_SIGNING_KEY_ABSPATH ${MCUBOOT_SIGNING_KEY_ABSPATH} CACHE INTERNAL "Absolute version of … 40 …N_KEY_ABSPATH ${MCUBOOT_ENCRYPTION_KEY_ABSPATH} CACHE INTERNAL "Absolute version of MCUBOOT_ENCRYP… 58 …message(FATAL_ERROR "You must set the project version to sign images by passing a version number i… 97 --version ${PROJECT_VERSION} # this sets the version number of the application
|
/mcuboot-latest/boot/espressif/port/esp32/ld/ |
D | bootloader.ld | 42 *(.gnu.version) 140 *(.gnu.version)
|
/mcuboot-latest/boot/mynewt/mcuboot_config/include/mcuboot_config/ |
D | mcuboot_config.h | 94 #if MYNEWT_VAL_CHOICE(BOOTUTIL_DOWNGRADE_PREVENTION, version)
|