Skip to content

Commit eb22008

Browse files
committed
[nrf noup] boot/zephyr/boards: DTS partitioning for nrf54lm20dongle
Added DTS overlay for partitions on nRF54LM20dongle. This is for firmware loader - slot0_parttion spans till end of RRAM. An application build must keep the same start address but can downsize the partition. Signed-off-by: Andrzej Puzdrowski <andrzej.puzdrowski@nordicsemi.no> (cherry picked from commit 0a692c4)
1 parent fce4dac commit eb22008

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*
2+
* Copyright (c) 2026 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/* This is nRF54lm20dongle_nrf54lm20b_cpuapp peculiar partitioning for MCUboot and firmware loader
8+
* slot0_partition spans RRAM with can be update by the firmware loader and booted by MCUboot.
9+
* beginning of the slot0_partition must match with the beginning of the slot0_partition of the user
10+
* application. Althought Application can be build for smaler partition and live some space for
11+
* other purposes like a storage partition.
12+
*/
13+
14+
/delete-node/ &storage_partition;
15+
16+
&cpuapp_rram {
17+
partitions {
18+
slot0_partition: partition@23000 {
19+
label = "image-0";
20+
reg = <0x23000 DT_SIZE_K(1896)>;
21+
};
22+
};
23+
};

0 commit comments

Comments
 (0)