Skip to content

Commit

Permalink
boards: st: dts: fix slot0_partition address error
Browse files Browse the repository at this point in the history
The B_L4S5I_IOT01A Discovery kit does not boot up when using --sysbuild.
The error is caused by slot0_partition which is assigned an address of 0x1000
which overlaps with the boot_partition. Setting the address to 0x10000 fixed it.

Signed-off-by: Winston Arrocena <[email protected]>
  • Loading branch information
wearrocena committed Nov 24, 2024
1 parent 3d6dde4 commit 7d48e97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boards/st/b_l4s5i_iot01a/b_l4s5i_iot01a.dts
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@
read-only;
};

slot0_partition: partition@1000 {
slot0_partition: partition@10000 {
label = "image-0";
reg = <0x1000 DT_SIZE_K(976)>;
reg = <0x10000 DT_SIZE_K(976)>;
};

slot1_partition: partition@104000 {
Expand Down

0 comments on commit 7d48e97

Please sign in to comment.