Home
last modified time | relevance | path

Searched refs:trailer (Results 1 – 11 of 11) sorted by relevance

/mcuboot-3.7.0/scripts/imgtool/keys/
Dgeneral.py33 def _emit(self, header, trailer, encoded_bytes, indent, file=sys.stdout, argument
36 self._emit_to_output(header, trailer, encoded_bytes, indent,
39 def _emit_to_output(self, header, trailer, encoded_bytes, indent, file, argument
49 print("\n" + trailer, file=file)
67 trailer="};",
80 trailer="};",
99 trailer="];",
111 trailer="};",
/mcuboot-3.7.0/scripts/imgtool/
Ddumpinfo.py129 trailer = {}
201 trailer["magic"] = trailer_magic
219 trailer["image_ok"] = image_ok
223 trailer["copy_done"] = copy_done
227 trailer["swap_info"] = swap_info
232 trailer["swap_size"] = swap_size
246 "trailer": trailer}
Dimage.py612 trailer = m * 3 * write_size # status area
619 trailer += keylen * 2 # encryption keys
620 trailer += self.max_align * 4 # image_ok/copy_done/swap_info/swap_size
621 trailer += magic_align_size
622 return trailer
/mcuboot-3.7.0/docs/
Dreadme-mbed.md41 …er-size"`, and some space must be left for the image trailer too (see [this](design.md#image-trail…
Dimgtool.md52 primary slot and adds a header and trailer that the bootloader is expecting:
78 trailer magic
119 The optional `--pad` argument will place a trailer on the image that
Dreadme-riot.md30 version information, and trailer type-length-value records (TLVs) with
DSubmittingPatches.md14 The supported trailer lines are structured as follows:
Drelease-notes.md162 of the image trailer. If `BOOT_MAX_ALIGN` is kept at 8, the trailer
320 - imgtool was updated to correctly detect trailer overruns by image.
/mcuboot-3.7.0/boot/zephyr/
DCMakeLists.txt451 # Boot trailer magic size
454 # Estimates for trailer TLV data size, this was taken from hello world builds for nrf52840dk
522 …set(mcuboot_image_footer_size ${required_size} CACHE INTERNAL "Estimated MCUboot image trailer siz…
523 …r_size ${required_upgrade_size} CACHE INTERNAL "Estimated MCUboot update image trailer size" FORCE)
DKconfig293 swap mode. It requires the trailer magic to be added to the signed image.
/mcuboot-3.7.0/sim/src/
Dimage.rs1737 let trailer = if Caps::OverwriteUpgrade.present() { in image_largest_trailer() localVariable
1750 trailer in image_largest_trailer()
1792 let trailer = image_largest_trailer(dev); in install_image() localVariable
1795 slot_len, HDR_SIZE, trailer); in install_image()
1796 slot_len - HDR_SIZE - trailer - tlv_len in install_image()
1799 let trailer = image_largest_trailer(dev); in install_image() localVariable
1802 slot_len, HDR_SIZE, trailer); in install_image()
1805 slot_len - HDR_SIZE - trailer - tlv_len + dev.align()*4 in install_image()