Skip to content

Commit a06ec0d

Browse files
openthread: Remove dependency to Zephyr NET L2 OpenThread
Rely on CONFIG_OPENTHREAD instead of CONFIG_NET_L2_OPENTHREAD to support a different networking approach than Zephyr's L2 layer. This allows to use of the nrf5 radio driver directly in the OpenThread platform as a simple alternative to Zephyr L2 networking. Signed-off-by: Arkadiusz Balys <[email protected]>
1 parent 1a6caa7 commit a06ec0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ add_subdirectory_ifdef(CONFIG_NRF_MODEM nrf_modem)
1515
add_subdirectory_ifdef(CONFIG_NRFXLIB_CRYPTO crypto)
1616
add_subdirectory_ifdef(CONFIG_BT softdevice_controller)
1717
add_subdirectory_ifdef(CONFIG_MPSL mpsl)
18-
add_subdirectory_ifdef(CONFIG_NET_L2_OPENTHREAD openthread)
18+
add_subdirectory_ifdef(CONFIG_OPENTHREAD openthread)
1919
add_subdirectory_ifdef(CONFIG_NRF_RPC nrf_rpc)
2020
add_subdirectory_ifdef(CONFIG_GZLL gzll)
2121
add_subdirectory_ifdef(CONFIG_NRF_DM nrf_dm)

openthread/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
55
#
66

7-
if NET_L2_OPENTHREAD
7+
if OPENTHREAD
88

99
menu "OpenThread"
1010

0 commit comments

Comments
 (0)