Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions boot/zephyr/boards/nrf54lm20dongle_nrf54lm20b_cpuapp.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* Copyright (c) 2026 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

/* This is nRF54lm20dongle_nrf54lm20b_cpuapp peculiar partitioning for MCUboot and firmware loader
* slot0_partition spans RRAM with can be update by the firmware loader and booted by MCUboot.
* beginning of the slot0_partition must match with the beginning of the slot0_partition of the user
* application. Althought Application can be build for smaler partition and live some space for
* other purposes like a storage partition.
*/

/delete-node/ &storage_partition;

&cpuapp_rram {
partitions {
slot0_partition: partition@23000 {
label = "image-0";
reg = <0x23000 DT_SIZE_K(1896)>;
};
};
};
Loading