Skip to content

Commit 1e29284

Browse files
committed
[nrf fromlist] dts: vendor: nordic: Fix invalid nrf54lm20a partition layout
This device indicates 4KiB sector size and has an impossible partition layout that starts part the way through a sector, this fixes the issue by having proper partition alignment Upstream PR #: 100535 Signed-off-by: Jamie McCrae <[email protected]>
1 parent 32a0efc commit 1e29284

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dts/vendor/nordic/nrf54lm20a_partition.dtsi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121

2222
slot0_partition: partition@10000 {
2323
label = "image-0";
24-
reg = <0x10000 DT_SIZE_K(922)>;
24+
reg = <0x10000 DT_SIZE_K(920)>;
2525
};
2626

27-
slot1_partition: partition@f6800 {
27+
slot1_partition: partition@f6000 {
2828
label = "image-1";
29-
reg = <0xf6800 DT_SIZE_K(922)>;
29+
reg = <0xf6000 DT_SIZE_K(920)>;
3030
};
3131

32-
storage_partition: partition@1dd000 {
32+
storage_partition: partition@1dc000 {
3333
label = "storage";
34-
reg = <0x1dd000 DT_SIZE_K(32)>;
34+
reg = <0x1dc000 DT_SIZE_K(36)>;
3535
};
3636
};
3737
};

0 commit comments

Comments
 (0)