From a870ca80e4e7545532ca687dfbeebbc805a67d2b Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 13 Jan 2023 15:40:03 +0000 Subject: [PATCH] doc: release: 3.3: Add note on MCUmgr transports Adds details on additional Kconfigs that need to be selected for MCUmgr transports. Signed-off-by: Jamie McCrae --- doc/releases/release-notes-3.3.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/releases/release-notes-3.3.rst b/doc/releases/release-notes-3.3.rst index a079ebb1664..3809ac1711c 100644 --- a/doc/releases/release-notes-3.3.rst +++ b/doc/releases/release-notes-3.3.rst @@ -70,6 +70,27 @@ Changes in this release :kconfig:option:`CONFIG_MCUMGR_TRANSPORT_BT_AUTOMATIC_INIT` should be disabled and the application should call :c:func:`smp_bt_start` at startup. +* MCUmgr transport Kconfigs have changed from ``select`` to ``depends on`` + which means that for applications using the Bluetooth transport, + applications will now need to enable the following: + + * :kconfig:option:`CONFIG_BT` + * :kconfig:option:`CONFIG_BT_PERIPHERAL` + + For CDC or serial transports: + + * :kconfig:option:`CONFIG_CONSOLE` + + For shell transport: + + * :kconfig:option:`CONFIG_SHELL` + * :kconfig:option:`CONFIG_SHELL_BACKEND_SERIAL` + + For UDP transport: + + * :kconfig:option:`CONFIG_NETWORKING` + * :kconfig:option:`CONFIG_NET_UDP` + Removed APIs in this release ============================