Home
last modified time | relevance | path

Searched refs:secondary (Results 1 – 15 of 15) sorted by relevance

/mcuboot-3.4.0/sim/mcuboot-sys/
DCargo.toml38 # Encrypt image in the secondary slot using RSA-OAEP-2048
41 # Encrypt image in the secondary slot using AES-256-CTR and RSA-OAEP-2048
44 # Encrypt image in the secondary slot using AES-KW-128
47 # Encrypt image in the secondary slot using AES-256-CTR and AES-KW-256
50 # Encrypt image in the secondary slot using ECIES-P256
53 # Encrypt image in the secondary slot using AES-256-CTR and ECIES-P256
56 # Encrypt image in the secondary slot using ECIES-P256 using Mbed TLS
59 # Encrypt image in the secondary slot using ECIES-X25519
62 # Encrypt image in the secondary slot using AES-256-CTR and ECIES-X25519
65 # Allow bootstrapping an empty/invalid primary slot from a valid secondary slot
/mcuboot-3.4.0/boot/cypress/MCUBootApp/
DExternalMemory.md5 Given document describes the use of external memory module as a secondary (upgrade) slot with Cypre…
10 Using external memory for secondary slot allows to nearly double the size of Boot Image.
18 * There only one module is being used for secondary slot;
20 * The address for secondary slot should start from 0x18000000.
33 `[0x18000000, 0x18010000]` - secondary slot for BlinkyApp;
53 **Note 1**: make sure primary, secondary slot and bootloader app sizes are appropriate and correspo…
55 **Note 2**: make sure secondary slot start address is aligned (or smaller) to erase size (0x40000 -…
66 2. Navigate to `cy_flash_map.c` and check if secondary slot start address and size meet the applica…
76 …ffset from original boot image address. This one in line above suggests secondary slot will start …
DREADME.md23 `[0x10028000, 0x10038000]` - secondary slot for BlinkyApp;
31 **Important**: make sure primary, secondary slot and bootloader app sizes are appropriate and corre…
115 __Note:__ It is also possible to place secondary (upgrade) slots in external memory module so resul…
164 … with these settings unencrypted and encrypted images will be accepted in secondary (upgrade) slot.
/mcuboot-3.4.0/docs/
Dreadme-mbed.md21 ### Providing a secondary slot
23 You need to provide an instance of `mbed::BlockDevice` as the secondary slot. It can be any types o…
27 In order for MCUboot to access your secondary slot, the interface to implement is
35 …`true` (already the default) and you have provided configurations and a secondary slot BlockDevice…
39 … with `boot_set_confirmed()` after an update, or set a new image in the secondary slot as pending …
Dreadme-zephyr.md17 - `slot1_partition`: the secondary slot of Image 0
29 then the corresponding primary and secondary partitions must be defined for
125 These images can also be marked for upgrade, and loaded into the secondary slot,
210 erasing the secondary slot from the zephyr application returns an error
243 * 2 - image-1, the secondary slot of the first image.
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
Dimgtool.md121 in the secondary slot will then cause the bootloader to upgrade to it.
Dreadme-espressif.md400 2. Encrypt flash in-place including bootloader, image primary/secondary slot and scratch.
444 1. Encrypt flash in-place including bootloader, image primary/secondary slot and scratch using the …
483 …s the images to be updated separately (each one has its own primary and secondary slot) by MCUboot.
Drelease-notes.md90 - Allow to boot primary image if secondary one is unreachable.
262 "primary slot" and "secondary slot".
/mcuboot-3.4.0/scripts/
Dassemble.py144 if args.secondary is not None:
145 output.add_image(args.secondary, "image-1")
/mcuboot-3.4.0/boot/zephyr/
DKconfig230 each sector X in the secondary slot, it is moved to index X in
232 moved to index X in the secondary.
283 bool "Bootstrap erased the primary slot from the secondary slot"
287 primary slot to be initialized from a valid image in the secondary slot.
312 If y, images in the secondary slot can be encrypted and are decrypted
314 back when swapping from the primary slot to the secondary slot. The
321 If y, images in the secondary slot can be encrypted and are decrypted
323 back when swapping from the primary slot to the secondary slot. The
331 If y, images in the secondary slot can be encrypted and are decrypted
333 back when swapping from the primary slot to the secondary slot. The
[all …]
DKconfig.serial_recovery58 2 -> image-1 (secondary slot of the first image);
/mcuboot-3.4.0/boot/cypress/
DREADME.md24 * [0x10028000, 0x10038000] - secondary slot for BlinkyApp;
29 It is also possible to place secondary (upgrade) slots in external memory module. In this case prim…
/mcuboot-3.4.0/boot/cypress/BlinkyApp/
DReadme.md92 …ffset from original boot image address. This one in line above suggests secondary slot will start …
/mcuboot-3.4.0/sim/src/
Dimage.rs176 let secondary = SlotInfo { in new() localVariable
184 slots.push([primary, secondary]); in new()