Skip to content

Commit

Permalink
net: lib: mqtt_helper: Depend on TLS_CREDENTIALS for prvisioning
Browse files Browse the repository at this point in the history
Depend on TLS_CREDENTIALS instead of depending on boards.

Signed-off-by: Jan Tore Guggedal <[email protected]>
  • Loading branch information
jtguggedal authored and rlubos committed Oct 10, 2024
1 parent 0d62ceb commit 3fa6f38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -943,6 +943,10 @@ Libraries for networking

* Added support for the ``SO_KEEPOPEN`` socket option to keep the socket open even during PDN disconnect and reconnect.

* :ref:`lib_mqtt_helper` library:

* Updated the :kconfig:option:`CONFIG_MQTT_HELPER_PROVISION_CERTIFICATES` Kconfig option to depend on :kconfig:option:`CONFIG_TLS_CREDENTIALS` instead of specific boards.

Libraries for NFC
-----------------

Expand Down
2 changes: 1 addition & 1 deletion subsys/net/lib/mqtt_helper/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ config MQTT_HELPER_PAYLOAD_BUFFER_LEN

config MQTT_HELPER_PROVISION_CERTIFICATES
bool "Run-time provisioning of certificates"
depends on (BOARD_QEMU_X86 || BOARD_NATIVE_POSIX || BOARD_NRF7002DK_NRF5340_CPUAPP || BOARD_NRF7002DK_NRF5340_CPUAPP_NS) && MQTT_LIB_TLS
depends on TLS_CREDENTIALS
default y
imply MBEDTLS_PEM_CERTIFICATE_FORMAT if MBEDTLS
help
Expand Down

0 comments on commit 3fa6f38

Please sign in to comment.