Home
last modified time | relevance | path

Searched refs:header (Results 1 – 25 of 29) sorted by relevance

12

/mcuboot-latest/samples/zephyr/
Dtest-compile.go99 header, err := zip.FileInfoHeader(info)
104 header.Name = testName + "/"
106 _, err = b.zip.CreateHeader(header)
137 header, err := zip.FileInfoHeader(info)
142 header.Name = path.Join(baseName, zipName)
143 header.Method = zip.Deflate
145 wr, err := b.zip.CreateHeader(header)
DMakefile134 --header-size $(BOOT_HEADER_LEN) \
159 --header-size $(BOOT_HEADER_LEN) \
/mcuboot-latest/scripts/imgtool/
Ddumpinfo.py80 header = "#### " + header_text + sepc
81 post_header = "#" * (_LINE_LENGTH - len(header))
82 print(header + post_header)
142 header = {}
145 header[key] = "{}.{}.{}+{}".format(*_version)
147 header[key] = _header[i]
154 tlv_off = header["hdr_size"] + header["img_size"]
155 protected_tlv_size = header["protected_tlv_size"]
235 if ((header["flags"] & image.IMAGE_F["ENCRYPTED_AES128"]) or
236 (header["flags"] & image.IMAGE_F["ENCRYPTED_AES256"])):
[all …]
Dmain.py318 header = bytearray()
321 header.append(i)
323 header.append( ( pb * 5 + lp) * 9 + lc)
324 return header
Dimage.py153 header = struct.pack(e + 'HH', self.magic, len(self))
154 return header + bytes(self.buf)
743 header = struct.pack(fmt,
757 self.payload[:len(header)] = header
/mcuboot-latest/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
42 print(header, end='', file=file)
65 header="const unsigned char {}_pub_key[] = {{"
78 header="const unsigned char {}_pub_key_hash[] = {{"
97 header="static {}_PUB_KEY: &[u8] = &["
110 header="const unsigned char enc_priv_key[] = {",
/mcuboot-latest/boot/zephyr/
Dshared_data.c35 struct shared_data_tlv_header header = { in boot_add_data_to_shared_area() local
114 header.tlv_tot_len = shared_data_size; in boot_add_data_to_shared_area()
116 rc = retention_write(bootloader_info_dev, 0, (void *)&header, in boot_add_data_to_shared_area()
117 sizeof(header)); in boot_add_data_to_shared_area()
DKconfig.serial_recovery56 header.
/mcuboot-latest/boot/bootutil/src/
Dboot_record.c71 boot_data->header.tlv_magic = SHARED_DATA_TLV_INFO_MAGIC; in boot_add_data_to_shared_area()
72 boot_data->header.tlv_tot_len = SHARED_DATA_HEADER_SIZE; in boot_add_data_to_shared_area()
79 tlv_end = MCUBOOT_SHARED_DATA_BASE + boot_data->header.tlv_tot_len; in boot_add_data_to_shared_area()
100 if (!boot_u16_safe_add(&boot_data_size, boot_data->header.tlv_tot_len, in boot_add_data_to_shared_area()
116 boot_data->header.tlv_tot_len += SHARED_DATA_ENTRY_SIZE(size); in boot_add_data_to_shared_area()
/mcuboot-latest/docs/release-notes.d/
Dbootutil-image-verification.md1 - Changed bootutil's order of events to verify the image header
Despressif-idf-version-checking.md3 - Extended image loader header to include RTC/LP RAM, DROM and IROM segments.
/mcuboot-latest/docs/
Dimgtool.md52 primary slot and adds a header and trailer that the bootloader is expecting:
97 -H, --header-size INTEGER [required]
98 --pad-header Add --header-size zeroed bytes at the
150 field to place in the header (1.2.3 for example), the alignment of the
151 flash device in question, and the header size.
153 The header size depends on the operating system and the particular
156 already prepended a zeroed header to the image. If another build system is
157 in use that does not automatically add this zeroed header, `--pad-header` can
158 be passed and the `--header-size` will be added by imgtool. If `--pad-header`
159 is used with an Intel Hex file, `--header-size` bytes will be subtracted from
Dreadme-mbed.md41 …mcuboot.header-size"` of your bootloader. And its size (`"target.mbed_app_size"`) must be no large…
Dcompression_format.md11 ![LZMA header](./images/decomp.png)
15 The Lempel-Ziv-Markov chain Algorithm (LZMA) header is crucial for files
Dreadme-mynewt.md34 Also, MCUboot uses a different image header struct as well as slightly
DPORTING.md37 /** A pointer to the header of the image to be executed. */
42 * the image header.
118 specific header files and are used to identify destination of flash area by ID:
Dreadme-espressif.md170 imgtool.py sign --align 4 -v 0 -H 32 --pad-header -S <SLOT_SIZE> <BIN_IN> <SIGNED_BIN>
180 For Zephyr images, `--pad-header` is not needed as it already has the padding for MCUboot
181 header.
294 imgtool.py sign -k <YOUR_SIGNING_KEY.pem> --pad --pad-sig --align 4 -v 0 -H 32 --pad-header -S 0x00…
297 If signing a Zephyr image, the `--pad-header` is not needed, as it already have the padding for
298 MCUboot header.
533 …NING_KEY.pem> --pad --pad-sig --align 32 --max-align 32 -v 0 -H 32 --pad-header -S <SLOT_SIZE> <BI…
745 …gn 4 -v <VERSION> -d "(<IMAGE_INDEX>, <VERSION_DEPENDENCY>)" -H 32 --pad-header -S <SLOT_SIZE> <BI…
756 imgtool.py sign --align 4 -v 1.0.0 -d "(1, 0.0.1+0)" -H 32 --pad-header -S 0x100000 image0.bin imag…
Drelease-notes.md357 header, and TLV data.
441 + `--pad-header` substitutes `--included-header` with reverted semantics,
486 information about signatures out of the header and into the TLV
511 - There is an unimplemented `load_addr` header for future support for
552 - The image header and TLV formats are planned to change with release 1.0:
/mcuboot-latest/boot/cypress/BlinkyApp/
DBlinkyApp.mk103 SIGN_ARGS := sign --header-size 1024 --pad-header --align 8 -v "2.0" -S $(SLOT_SIZE) -M 512 --overw…
/mcuboot-latest/boot/bootutil/include/bootutil/
Dboot_status.h182 struct shared_data_tlv_header header; member
/mcuboot-latest/boot/mbed/
Dmcuboot_imgtool.cmake64 # Grab header size
98 …--header-size ${HEADER_SIZE_HEX} # this must be the same as the value specified in mcuboot.header-…
99 …--pad-header # this tells imgtool to insert the entire header, including any necessary padding byt…
142 …# is <primary slot address> + <header size>, but we actually want to upload to <primary slot addre…
/mcuboot-latest/ext/tinycrypt/
DREADME45 security and technicalities, please see the corresponding header file of each
53 /lib/include/tinycrypt: C header files of the cryptographic primitives.
/mcuboot-latest/boot/espressif/tools/
Dutils.cmake35 # Read the header file and extract the value of the specified macro
/mcuboot-latest/scripts/
Dmcubin.bt40 Warning("Invalid magic on ptable header");
/mcuboot-latest/boot/cypress/
DMakefile90 $(info = Directories to look for header files: =)

12