Home
last modified time | relevance | path

Searched refs:primary (Results 1 – 20 of 20) sorted by relevance

/mcuboot-latest/docs/
Dreadme-mbed.md14 * `"mcuboot.primary-slot-address"`: address of the primary slot in the internal flash
17 …ict_size"`: the maximum size of the bootloader, such that it does not overlap with the primary slot
41primary slots (instead of the beginning of the whole flash), you need to set the start address (`"…
Dreadme-zephyr.md16 - `slot0_partition`: the primary slot of Image 0
29 then the corresponding primary and secondary partitions must be defined for
55 if the primary slot should be validated on every boot.
116 need to be programmed at the offset of the primary slot for this particular
118 specify a flash offset corresponding to the primary slot starting address. This
126 the image to mark the primary slot as "image ok" before the next reboot,
170 size of the 2 partitions (e.g. if a device has a primary slot in main flash
241 * 0 and 1 - image-0, the primary slot of the first image.
Dimgtool.md52 primary slot and adds a header and trailer that the bootloader is expecting:
86 alignment of the primary and secondary slot
117 primary slot, and encrypted when swapped to
Drelease-notes.md41 the secondary slot which is used to update the primary image
181 primary and much more featureful.
207 - Allow to boot primary image if secondary one is unreachable.
242 - Allow larger primary slot in swap-move
245 if the primary image was padded.
379 "primary slot" and "secondary slot".
DPORTING.md161 /*< Returns the `fa_id` for slot, where slot is 0 (primary) or 1 (secondary).
165 /*< Returns the slot (0 for primary or 1 for secondary), for the supplied
Dreadme-espressif.md552 2. Encrypt flash in-place including bootloader, image primary/secondary slot and scratch.
610 1. Encrypt flash in-place including bootloader, image primary/secondary slot and scratch using the
665 (each one has its own primary and secondary slot) by MCUboot.
/mcuboot-latest/docs/release-notes.d/
Dencrypted-scratch-partition.md2 the scratch partition to the primary slot. Therefore, the sratch partition
Dswap-using-offset.md3 using move but avoids moving the sectors in the primary slot
/mcuboot-latest/sim/mcuboot-sys/
DCargo.toml45 # Disable validation of the primary slot
46 validate-primary-slot = []
75 # Allow bootstrapping an empty/invalid primary slot from a valid secondary slot
/mcuboot-latest/sim/
DCargo.toml20 validate-primary-slot = ["mcuboot-sys/validate-primary-slot"]
/mcuboot-latest/boot/zephyr/
DKconfig304 bool "Validate image in the primary slot on every boot"
308 primary slot every boot. This adds the signature check time to
313 bool "Validate image in the primary slot just once after after upgrade"
318 primary slot only once after an upgrade of the main slot.
359 If y, overwrite the primary slot with the upgrade image instead
367 the primary slot, then the sector at X+1 in the primary is moved to index X in the
378 sector of the primary slot is moved up one sector, then for
380 the primary slot, then the sector at X+1 in the primary is
391 without having to move/copy it into the primary slot. For this reason the
414 key as the primary image.
[all …]
DKconfig.serial_recovery59 1 -> image-0 (primary slot of the first image);
/mcuboot-latest/boot/cypress/
DREADME.md23 * [0x10018000, 0x10028000] - primary slot for BlinkyApp;
29 … place secondary (upgrade) slots in external memory module. In this case primary slot can be doubl…
/mcuboot-latest/scripts/
Dassemble.py143 output.add_image(args.primary, "image-0")
/mcuboot-latest/boot/cypress/MCUBootApp/
DExternalMemory.md31 `[0x10018000, 0x10028000]` - primary slot for BlinkyApp;
53 **Note 1**: make sure primary, secondary slot and bootloader app sizes are appropriate and correspo…
DREADME.md21 `[0x10018000, 0x10028000]` - primary slot for BlinkyApp;
31 **Important**: make sure primary, secondary slot and bootloader app sizes are appropriate and corre…
/mcuboot-latest/boot/mbed/
Dmcuboot_imgtool.cmake142 …# is <primary slot address> + <header size>, but we actually want to upload to <primary slot addre…
163 # NOTE 2: The hex file produced by this function will still "declare" its address as the primary sl…
/mcuboot-latest/samples/zephyr/
DMakefile260 BOOTLOADER_EXTRA_CONF_FILE=$(PWD)/overlay-skip-primary-slot-validate.conf \
/mcuboot-latest/boot/bootutil/src/
Dloader.c77 boot_sector_t primary[BOOT_IMAGE_NUMBER][BOOT_MAX_IMG_SECTORS]; member
2307 sector_buffers.primary[image_index];
3123 sector_buffers.primary[image_index];
/mcuboot-latest/sim/src/
Dimage.rs177 let primary = SlotInfo { in new() localVariable
194 slots.push([primary, secondary]); in new()