From 51708a760f23d1decc736e6cd58d66c010a23322 Mon Sep 17 00:00:00 2001 From: Winston Arrocena Date: Sun, 24 Nov 2024 16:57:18 +0800 Subject: [PATCH] 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 --- boards/st/b_l4s5i_iot01a/b_l4s5i_iot01a.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/st/b_l4s5i_iot01a/b_l4s5i_iot01a.dts b/boards/st/b_l4s5i_iot01a/b_l4s5i_iot01a.dts index 064d61fb691..d7f5adab5be 100644 --- a/boards/st/b_l4s5i_iot01a/b_l4s5i_iot01a.dts +++ b/boards/st/b_l4s5i_iot01a/b_l4s5i_iot01a.dts @@ -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 {