diff --git a/boards/raspberrypi/rpi_pico/Kconfig.sysbuild b/boards/raspberrypi/rpi_pico/Kconfig.sysbuild new file mode 100644 index 0000000000000..e182772b71402 --- /dev/null +++ b/boards/raspberrypi/rpi_pico/Kconfig.sysbuild @@ -0,0 +1,10 @@ +# Copyright (c) 2025 Beechwoods Software Inc. +# SPDX-License-Identifier: Apache-2.0 + +choice BOOTLOADER + default BOOTLOADER_MCUBOOT +endchoice + +choice BOOT_SIGNATURE_TYPE + default BOOT_SIGNATURE_TYPE_NONE +endchoice diff --git a/boards/raspberrypi/rpi_pico/sysbuild.overlay b/boards/raspberrypi/rpi_pico/sysbuild.overlay new file mode 100644 index 0000000000000..d71197f08adb8 --- /dev/null +++ b/boards/raspberrypi/rpi_pico/sysbuild.overlay @@ -0,0 +1,7 @@ +/delete-node/ &code_partition; +#include +/ { + chosen { + zephyr,code-partition = &slot0_partition; + }; +};