Skip to content

Commit 296949e

Browse files
committed
bootutil: fix swap-move brick with padded image0
When the image in the primary slot is padded, the boot source is considered the primary slot; this results in skipping the typical initialization of the trailer, which ends up bricking the device. As it is fine to always initialize the trailer in the primary slot when starting a new upgrade the extra check was removed. Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
1 parent 2cbe5e2 commit 296949e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

boot/bootutil/src/swap_move.c

+4-6
Original file line numberDiff line numberDiff line change
@@ -315,13 +315,11 @@ boot_move_sector_up(int idx, uint32_t sz, struct boot_loader_state *state,
315315
old_off = boot_img_sector_off(state, BOOT_PRIMARY_SLOT, idx - 1);
316316

317317
if (bs->idx == BOOT_STATUS_IDX_0) {
318-
if (bs->source != BOOT_STATUS_SOURCE_PRIMARY_SLOT) {
319-
rc = swap_erase_trailer_sectors(state, fap_pri);
320-
assert(rc == 0);
318+
rc = swap_erase_trailer_sectors(state, fap_pri);
319+
assert(rc == 0);
321320

322-
rc = swap_status_init(state, fap_pri, bs);
323-
assert(rc == 0);
324-
}
321+
rc = swap_status_init(state, fap_pri, bs);
322+
assert(rc == 0);
325323

326324
rc = swap_erase_trailer_sectors(state, fap_sec);
327325
assert(rc == 0);

0 commit comments

Comments
 (0)