Skip to content

Commit f82f49a

Browse files
lemreyrlubos
authored andcommitted
net: lib: nrf_provisioning: do not imply NRF_MODEM_LIB
Do not imply NRF_MODEM_LIB, instead depend on it. It is enabled by default in all nRF9 projects. Signed-off-by: Emanuele Di Santo <[email protected]>
1 parent ce1696b commit f82f49a

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

subsys/net/lib/nrf_provisioning/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
menuconfig NRF_PROVISIONING
88
bool "nRF Provisioning"
99
select EXPERIMENTAL
10-
imply NRF_MODEM_LIB
10+
depends on NRF_MODEM_LIB
1111
depends on SETTINGS
1212
imply FCB
1313

subsys/net/lib/nrf_provisioning/Kconfig.nrf_provisioning_codec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
menuconfig NRF_PROVISIONING_CODEC
77
bool "nRF Provisioning codec"
88
select EXPERIMENTAL
9-
imply NRF_MODEM_LIB
9+
depends on NRF_MODEM_LIB
1010

1111
if NRF_PROVISIONING_CODEC
1212

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor ASA
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
menuconfig NRF_PROVISIONING
8+
bool "nRF Provisioning"
9+
select EXPERIMENTAL
10+
#depends on NRF_MODEM_LIB
11+
depends on SETTINGS
12+
imply FCB
13+
help
14+
Redefinition to disable modemlib requirement from the tests as we want to mock it.
15+
16+
menuconfig NRF_PROVISIONING_CODEC
17+
bool "nRF Provisioning codec"
18+
select EXPERIMENTAL
19+
#depends on NRF_MODEM_LIB
20+
help
21+
Redefinition to disable modemlib requirement from the tests as we want to mock it.
22+
23+
menu "Zephyr Kernel"
24+
source "Kconfig.zephyr"
25+
endmenu

0 commit comments

Comments
 (0)