[nrf noup] boot/zephyr/boards: DTS partitioning for nrf54lm20dongle#648
Merged
Conversation
NordicBuilder
added a commit
to NordicBuilder/sdk-nrf
that referenced
this pull request
Apr 14, 2026
Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-mcuboot#648 Signed-off-by: Nordic Builder <pylon@nordicsemi.no>
de-nordic
approved these changes
Apr 14, 2026
tomchy
approved these changes
Apr 16, 2026
de-nordic
approved these changes
Apr 16, 2026
nvlsianpu
commented
Apr 22, 2026
Comment on lines
+14
to
+38
| /delete-node/ &boot_partition; | ||
| /delete-node/ &slot0_partition; | ||
| /delete-node/ &slot1_partition; | ||
| /delete-node/ &storage_partition; | ||
|
|
||
| &cpuapp_rram { | ||
| reg = <0x0 DT_SIZE_K(2036)>; | ||
| ranges = <0x0 0x0 DT_SIZE_K(2036)>; | ||
|
|
||
| partitions { | ||
| compatible = "fixed-partitions"; | ||
| #address-cells = <1>; | ||
| #size-cells = <1>; | ||
|
|
||
| /* Matches board layout */ | ||
| boot_partition: partition@0 { | ||
| label = "mcuboot"; | ||
| reg = <0x0 DT_SIZE_K(24)>; | ||
| }; | ||
|
|
||
| /* Matches board layout */ | ||
| slot1_partition: partition@6000 { | ||
| label = "image-1"; | ||
| reg = <0x6000 DT_SIZE_K(116)>; | ||
| }; |
Collaborator
Author
There was a problem hiding this comment.
Suggested change
| /delete-node/ &boot_partition; | |
| /delete-node/ &slot0_partition; | |
| /delete-node/ &slot1_partition; | |
| /delete-node/ &storage_partition; | |
| &cpuapp_rram { | |
| reg = <0x0 DT_SIZE_K(2036)>; | |
| ranges = <0x0 0x0 DT_SIZE_K(2036)>; | |
| partitions { | |
| compatible = "fixed-partitions"; | |
| #address-cells = <1>; | |
| #size-cells = <1>; | |
| /* Matches board layout */ | |
| boot_partition: partition@0 { | |
| label = "mcuboot"; | |
| reg = <0x0 DT_SIZE_K(24)>; | |
| }; | |
| /* Matches board layout */ | |
| slot1_partition: partition@6000 { | |
| label = "image-1"; | |
| reg = <0x6000 DT_SIZE_K(116)>; | |
| }; | |
| /delete-node/ &storage_partition; | |
| &cpuapp_rram { | |
| partitions { |
Collaborator
Author
There was a problem hiding this comment.
@Damian-Nordic Your opinion on aligning this with what we put to the fw_loader?
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>
5afec5b to
ca5d209
Compare
|
NordicBuilder
added a commit
to NordicBuilder/sdk-nrf
that referenced
this pull request
Apr 23, 2026
Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-mcuboot#648 Signed-off-by: Nordic Builder <pylon@nordicsemi.no>
Damian-Nordic
approved these changes
Apr 23, 2026
NordicBuilder
added a commit
to NordicBuilder/sdk-nrf
that referenced
this pull request
Apr 24, 2026
Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-mcuboot#648 Signed-off-by: Nordic Builder <pylon@nordicsemi.no>
nvlsianpu
pushed a commit
to nrfconnect/sdk-nrf
that referenced
this pull request
Apr 28, 2026
Automatically created by action-manifest-pr GH action from PR: nrfconnect/sdk-mcuboot#648 Signed-off-by: Nordic Builder <pylon@nordicsemi.no>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



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.
in pair with nrfconnect/sdk-nrf#28154