From 4613c9b01000f3e50d16a935d913f9c952dd090f Mon Sep 17 00:00:00 2001 From: Bjarki Arge Andreasen Date: Tue, 12 Aug 2025 11:41:47 +0200 Subject: [PATCH] [nrf noup] boot: zephyr: boards: add chosen boot part nrf54h20 cpuapp overlay Add the required zephyr,boot-partition to chosen node of the nrf54h20dk_nrf54h20_cpuapp overlay as the the board overlay overwrites the common app.overlay. Signed-off-by: Bjarki Arge Andreasen --- boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp.overlay | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp.overlay b/boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp.overlay index d564ed924..1be6ba8a5 100644 --- a/boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp.overlay +++ b/boot/zephyr/boards/nrf54h20dk_nrf54h20_cpuapp.overlay @@ -51,3 +51,14 @@ &gpio_pad_group9 { status = "disabled"; }; + +/* + * Copy from app.overlay as the board overlay take precedence + * over app overlay. + */ + +/ { + chosen { + zephyr,code-partition = &boot_partition; + }; +};