Skip to content

Commit 0d194cf

Browse files
committed
ble_mcumgr: Allow to standalone FW loader builds
Add missing configuration, so the FW loader application can be built directly. Ref: NCSDK-33237 Signed-off-by: Tomasz Chyrowicz <[email protected]>
1 parent dfbb5bd commit 0d194cf

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
if SOC_SERIES_NRF54HX
8+
9+
config NRF_DEFAULT_IPC_RADIO
10+
default y
11+
12+
config NETCORE_IPC_RADIO_BT_HCI_IPC
13+
default y
14+
15+
endif # SOC_SERIES_NRF54HX
16+
17+
source "${ZEPHYR_BASE}/share/sysbuild/Kconfig"
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
mcuboot:
2+
address: 0x0
3+
region: flash_primary
4+
size: 0x11000
5+
app:
6+
address: 0x11800
7+
region: flash_primary
8+
size: 0xa6800
9+
mcuboot_pad:
10+
address: 0x11000
11+
region: flash_primary
12+
size: 0x800
13+
mcuboot_primary:
14+
address: 0x11000
15+
orig_span: &id001
16+
- app
17+
- mcuboot_pad
18+
region: flash_primary
19+
size: 0xa7000
20+
span: *id001
21+
mcuboot_primary_app:
22+
address: 0x11800
23+
orig_span: &id002
24+
- app
25+
region: flash_primary
26+
size: 0xa6800
27+
span: *id002
28+
mcuboot_secondary:
29+
address: 0xb8000
30+
region: flash_primary
31+
size: 0xa9000
32+
settings_storage:
33+
address: 0x161000
34+
region: flash_primary
35+
size: 0x4000
36+
sram_primary:
37+
address: 0x20000000
38+
end_address: 0x2002f000
39+
region: sram_primary
40+
size: 0x2f000
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Enable MCUboot bootloader support
2+
SB_CONFIG_BOOTLOADER_MCUBOOT=y

0 commit comments

Comments
 (0)