From 2b6a8d38341c4a9d4fba191a4768fc4994ac71ac Mon Sep 17 00:00:00 2001 From: John Lin Date: Wed, 28 May 2025 10:49:06 -0700 Subject: [PATCH] boot: zephyr: boards: Assign boot_partition to code-patition Use the boot_partition as the code-partition for RPI Pico W in order for SysBuild to use the correct partition during the build process. Signed-off-by: John Lin --- boot/zephyr/boards/rpi_pico_rp2040_w.overlay | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 boot/zephyr/boards/rpi_pico_rp2040_w.overlay diff --git a/boot/zephyr/boards/rpi_pico_rp2040_w.overlay b/boot/zephyr/boards/rpi_pico_rp2040_w.overlay new file mode 100644 index 000000000..2d2309c66 --- /dev/null +++ b/boot/zephyr/boards/rpi_pico_rp2040_w.overlay @@ -0,0 +1,11 @@ +/* + * Copyright (c) 2025 Beechwoods Software Inc. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +/ { + chosen { + zephyr,code-partition = &boot_partition; + }; +};