Searched refs:secondary (Results 1 – 16 of 16) sorted by relevance
/mcuboot-latest/sim/mcuboot-sys/ |
D | Cargo.toml | 44 # Encrypt image in the secondary slot using RSA-OAEP-2048 47 # Encrypt image in the secondary slot using AES-256-CTR and RSA-OAEP-2048 50 # Encrypt image in the secondary slot using AES-KW-128 53 # Encrypt image in the secondary slot using AES-256-CTR and AES-KW-256 56 # Encrypt image in the secondary slot using ECIES-P256 59 # Encrypt image in the secondary slot using AES-256-CTR and ECIES-P256 62 # Encrypt image in the secondary slot using ECIES-P256 using Mbed TLS 65 # Encrypt image in the secondary slot using ECIES-X25519 68 # Encrypt image in the secondary slot using AES-256-CTR and ECIES-X25519 71 # Allow bootstrapping an empty/invalid primary slot from a valid secondary slot
|
/mcuboot-latest/boot/cypress/MCUBootApp/ |
D | ExternalMemory.md | 5 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 …
|
D | README.md | 23 `[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-latest/docs/ |
D | readme-mbed.md | 21 ### 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 …
|
D | readme-zephyr.md | 17 - `slot1_partition`: the secondary slot of Image 0 29 then the corresponding primary and secondary partitions must be defined for 124 These images can also be marked for upgrade, and loaded into the secondary slot, 209 erasing the secondary slot from the zephyr application returns an error 242 * 2 - image-1, the secondary slot of the first image.
|
D | PORTING.md | 161 /*< 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
|
D | release-notes.md | 41 the secondary slot which is used to update the primary image 120 led to usage faults when the secondary slot image was encrypted. 207 - Allow to boot primary image if secondary one is unreachable. 379 "primary slot" and "secondary slot".
|
D | imgtool.md | 121 in the secondary slot will then cause the bootloader to upgrade to it.
|
D | readme-espressif.md | 548 2. Encrypt flash in-place including bootloader, image primary/secondary slot and scratch. 606 1. Encrypt flash in-place including bootloader, image primary/secondary slot and scratch using the 661 (each one has its own primary and secondary slot) by MCUboot.
|
/mcuboot-latest/scripts/ |
D | assemble.py | 144 if args.secondary is not None: 145 output.add_image(args.secondary, "image-1")
|
/mcuboot-latest/boot/zephyr/ |
D | Kconfig | 290 each sector X in the secondary slot, it is moved to index X in 292 moved to index X in the secondary. 318 If y, mcuboot will have a single application slot, and the secondary 355 bool "Bootstrap erased the primary slot from the secondary slot" 359 primary slot to be initialized from a valid image in the secondary slot. 391 If y, images in the secondary slot can be encrypted and are decrypted 393 back when swapping from the primary slot to the secondary slot. The 808 If enabled, will include support for compressed images being loaded to the secondary slot 809 which then get decompressed into the primary slot. This mode allows the secondary slot to 819 The size of a secondary buffer used for writing decompressed data to the storage device. [all …]
|
D | Kconfig.serial_recovery | 60 2 -> image-1 (secondary slot of the first image);
|
/mcuboot-latest/boot/cypress/ |
D | README.md | 24 * [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-latest/boot/cypress/BlinkyApp/ |
D | Readme.md | 92 …ffset from original boot image address. This one in line above suggests secondary slot will start …
|
/mcuboot-latest/boot/bootutil/src/ |
D | loader.c | 78 boot_sector_t secondary[BOOT_IMAGE_NUMBER][BOOT_MAX_IMG_SECTORS]; member 2251 sector_buffers.secondary[image_index]; 3465 sector_buffers.secondary[image_index];
|
/mcuboot-latest/sim/src/ |
D | image.rs | 186 let secondary = SlotInfo { in new() localVariable 194 slots.push([primary, secondary]); in new()
|