Home
last modified time | relevance | path

Searched refs:version (Results 1 – 25 of 40) sorted by relevance

12

/mcuboot-3.4.0/ci/
Dcompare_versions.py15 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))
/mcuboot-3.4.0/ptest/
DCargo.lock3 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 …]
DCargo.toml3 version = "0.1.0"
/mcuboot-3.4.0/
DCargo.lock3 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 …]
DCODE_OF_CONDUCT.md119 version 2.0, available at
120 [https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0].
130 [v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html
/mcuboot-3.4.0/docs/
Drelease.md7 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 …]
DGemfile3 # 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
Dreadme-riot.md9 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
Dimgtool.md65 -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.
Dreadme-espressif.md138 Downgrade prevention (avoid updating of images to an older version) can be enabled using the follow…
144 MCUboot will then verify and compare the new image version number with the current one before perfo…
150 …ed to the image when signing with `imgtool` (`-s` parameter), apart from version number. This allo…
271 espsecure.py generate_signing_key --version 2 <BOOTLOADER_SIGNING_KEY.pem>
276 espsecure.py sign_data --version 2 --keyfile <BOOTLOADER_SIGNING_KEY.pem> -o <BOOTLOADER_BIN_OUT> <…
549 ### [Image version dependency](#image-version-dependency)
551version dependency check between the images when updating them. As `imgtool.py` allows a version a…
556 - `<VERSION>` defines the version of the image being signed.
557 - `"(<IMAGE_INDEX>, <VERSION_DEPENDENCY>)"` defines the minimum version and from which image is nee…
565 Supposing that the image 0 is being signed, its version is 1.0.0 and it depends on image 1 with ver…
/mcuboot-3.4.0/scripts/imgtool/
Dimage.py23 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")
188 self.security_counter = ((self.version.major << 24)
189 + (self.version.minor << 16)
190 + self.version.revision)
199 self.version,
362 image_version = (str(self.version.major) + '.'
363 + str(self.version.minor) + '.'
364 + str(self.version.revision))
[all …]
Dmain.py27 from imgtool.version import decode_version
180 ret, version, digest = image.Image.verify(imgfile, key)
183 print("Image version: {}.{}.{}+{}".format(*version))
368 def sign(key, public_key_format, align, version, pad_sig, header_size, argument
379 img = image.Image(version=decode_version(version), header_size=header_size,
469 def version(): function
484 imgtool.add_command(version)
/mcuboot-3.4.0/docs/release-notes.d/
Dzcbor-update.md1 - zcbor library files have been updated to version 0.7.0
/mcuboot-3.4.0/sim/
DCargo.toml3 version = "0.1.0"
37 rand = { version = "0.8", features = ["small_rng"] }
49 aes = { version = "0.7.4", features = ["ctr"] }
/mcuboot-3.4.0/sim/simflash/
DCargo.toml3 version = "0.1.0"
/mcuboot-3.4.0/scripts/
Dsetup.py8 version=imgtool_version,
/mcuboot-3.4.0/boot/bootutil/src/
Dencrypted.c180 int version; in parse_ec256_enckey() local
193 version = 0; in parse_ec256_enckey()
194 if (mbedtls_asn1_get_int(p, end, &version) || version != 0) { in parse_ec256_enckey()
222 version = 0; in parse_ec256_enckey()
223 if (mbedtls_asn1_get_int(p, end, &version) || version != 1) { in parse_ec256_enckey()
257 int version; in parse_x25519_enckey() local
270 version = 0; in parse_x25519_enckey()
271 if (mbedtls_asn1_get_int(p, end, &version) || version != 0) { in parse_x25519_enckey()
/mcuboot-3.4.0/boot/zcbor/
Dadd_zcbor_copy_version.sh14 ' "$2" "$(zcbor --version)"; cat $1;)" > $1
/mcuboot-3.4.0/ext/fiat/
DMETADATA9 version: "4441785fb44b88bb6943ddbf639d872c8c903281"
/mcuboot-3.4.0/sim/src/
Dtlv.rs88 fn add_dependency(&mut self, id: u8, version: &ImageVersion); in add_dependency()
127 version: ImageVersion, field
328 fn add_dependency(&mut self, id: u8, version: &ImageVersion) { in add_dependency()
331 version: version.clone(), in add_dependency()
415 protected_tlv.push(dep.version.major); in make_tlv()
416 protected_tlv.push(dep.version.minor); in make_tlv()
417 protected_tlv.write_u16::<LittleEndian>(dep.version.revision).unwrap(); in make_tlv()
418 protected_tlv.write_u32::<LittleEndian>(dep.version.build_num).unwrap(); in make_tlv()
/mcuboot-3.4.0/boot/mynewt/mcuboot_config/include/mcuboot_config/
Dmcuboot_config.h85 #if MYNEWT_VAL_CHOICE(BOOTUTIL_DOWNGRADE_PREVENTION, version)
/mcuboot-3.4.0/sim/mcuboot-sys/
DCargo.toml3 version = "0.1.0"
80 # Check (in software) against version downgrades.
/mcuboot-3.4.0/samples/zephyr/
DMakefile136 --version 1.2 \
161 --version 1.2 \
/mcuboot-3.4.0/boot/zephyr/
DKconfig240 If y, mcuboot selects the newest valid image based on the image version
249 If y, mcuboot selects the newest valid image based on the image version
526 bool "Use build number while comparing image version"
530 By default, the image version comparison relies only on version major,
542 Prevent downgrades by enforcing incrementing version numbers.
543 When this option is set, any upgrade must have greater major version
544 or greater minor version with equal major version. This mechanism
545 only protects against some attacks against version downgrades (for
546 example, a JTAG could be used to write an older version).
549 bool "Use image security counter instead of version number"
[all …]
/mcuboot-3.4.0/boot/espressif/port/esp32/ld/
Dbootloader.ld65 *(.gnu.version)
163 *(.gnu.version)

12