boards: st: dts: fix slot0_partition address error
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 <we.arrocena@gmail.com>
This commit is contained in:
parent
1e3b106435
commit
51708a760f
1 changed files with 2 additions and 2 deletions
|
@ -185,9 +185,9 @@
|
||||||
read-only;
|
read-only;
|
||||||
};
|
};
|
||||||
|
|
||||||
slot0_partition: partition@1000 {
|
slot0_partition: partition@10000 {
|
||||||
label = "image-0";
|
label = "image-0";
|
||||||
reg = <0x1000 DT_SIZE_K(976)>;
|
reg = <0x10000 DT_SIZE_K(976)>;
|
||||||
};
|
};
|
||||||
|
|
||||||
slot1_partition: partition@104000 {
|
slot1_partition: partition@104000 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue