Skip to content

Commit d215530

Browse files
committed
applications: nrf_desktop: nrf54h20dk: add uicr image configuration
Updated the nRF Desktop configuration for the nRF54H20 DK board target to include the configuration of the new UICR sysbuild image. Ref: NCSDK-35658 Signed-off-by: Kamil Piszczek <[email protected]>
1 parent e9c88d3 commit d215530

File tree

6 files changed

+51
-0
lines changed

6 files changed

+51
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/* Aligning the DTS configuration between the UICR image and the application (default) image.
8+
* The UICR image must use the same DTS configuration as the default image.
9+
*/
10+
#include "../../app.overlay"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/* Aligning the DTS configuration between the UICR image and the application (default) image.
8+
* The UICR image must use the same DTS configuration as the default image.
9+
*/
10+
#include "../../app_dongle.overlay"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/* Aligning the DTS configuration between the UICR image and the application (default) image.
8+
* The UICR image must use the same DTS configuration as the default image.
9+
*/
10+
#include "../../app_release.overlay"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
* Copyright (c) 2025 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/* Aligning the DTS configuration between the UICR image and the application (default) image.
8+
* The UICR image must use the same DTS configuration as the default image.
9+
*/
10+
#include "../../app_release_dongle.overlay"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
# Nothing here

applications/nrf_desktop/sysbuild/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ set(ipc_radio_APPLICATION_CONFIG_DIR
2222
"${CMAKE_CURRENT_LIST_DIR}/../configuration/\${NORMALIZED_BOARD_TARGET}/images/ipc_radio"
2323
CACHE INTERNAL "Application configuration dir controlled by sysbuild"
2424
)
25+
set(uicr_APPLICATION_CONFIG_DIR
26+
"${CMAKE_CURRENT_LIST_DIR}/../configuration/\${NORMALIZED_BOARD_TARGET}/images/uicr"
27+
CACHE INTERNAL "Application configuration dir controlled by sysbuild"
28+
)
2529

2630
find_package(Sysbuild REQUIRED HINTS $ENV{ZEPHYR_BASE})
2731

0 commit comments

Comments
 (0)