Skip to content

Commit 8ab9129

Browse files
committed
Fix partitions addresses
Signed-off-by: Titouan Christophe <[email protected]>
1 parent ddb41b4 commit 8ab9129

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

boards/st/stm32h7s78_dk/stm32h7s78_dk.dts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,22 +212,22 @@
212212

213213
slot0_partition: partition@0 {
214214
label = "image-0";
215-
reg = <0x00040000 DT_SIZE_M(16)>;
215+
reg = <0x00000000 DT_SIZE_M(16)>;
216216
};
217217

218218
slot1_partition: partition@1000000 {
219219
label = "image-1";
220-
reg = <0x00080000 DT_SIZE_M(16)>;
220+
reg = <0x01000000 DT_SIZE_M(16)>;
221221
};
222222

223223
scratch_partition: partition@2000000 {
224224
label = "image-scratch";
225-
reg = <0x000c0000 DT_SIZE_M(16)>;
225+
reg = <0x02000000 DT_SIZE_M(16)>;
226226
};
227227

228228
storage_partition: partition@3000000 {
229229
label = "storage";
230-
reg = <0x00020000 DT_SIZE_M(80)>;
230+
reg = <0x03000000 DT_SIZE_M(80)>;
231231
};
232232
};
233233
};

0 commit comments

Comments
 (0)