<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/109763/sdk-2-6-0-cmake-error-config_bt_rpmsg-has-been-renamed-to-config_bt_hci_ipc</link><description>Just upgraded to NRF v 2.6.0 (Mac OS; VS Code). Our code previous built and ran successfully on our custom board with v 2.5.0 of the SDK. 
 Now we get the following error which breaks the build process, and it is unclear how to resolve it (e.g. setting</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 02 Jul 2024 14:34:30 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/109763/sdk-2-6-0-cmake-error-config_bt_rpmsg-has-been-renamed-to-config_bt_hci_ipc" /><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/491883?ContentTypeID=1</link><pubDate>Tue, 02 Jul 2024 14:34:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d9747282-6c40-4dd0-935a-4b84d9e34679</guid><dc:creator>Martdur</dc:creator><description>&lt;p&gt;Try looking at&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;choice BT_HCI_BUS_TYPE
	default BT_RPMSG if BT
endchoice&lt;/pre&gt;&amp;nbsp;in your Kconfig.defconfig.&lt;/p&gt;
&lt;p&gt;You do not set&amp;nbsp;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_BT_RPMSG&lt;/pre&gt;explicity but indirectly with those line.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Replace it by&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;choice BT_HCI_BUS_TYPE
	default BT_HCI_IPC if BT
endchoice&lt;/pre&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;works for me.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Hopes that can help.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476657?ContentTypeID=1</link><pubDate>Tue, 02 Apr 2024 14:57:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e72b97b9-0337-498f-b8f5-9f089885bf2e</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi Dan,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span dir="ltr"&gt;The current migration guide should clarify what needs to be done as the generic change. I will report to the team.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Here is the diff&amp;nbsp;&lt;span&gt;&lt;span dir="ltr"&gt;&lt;a title="https://github.com/nrfconnect/sdk-nrf/commit/053408845f4a351f0af8253b91bedc1d811f69e9#diff-ed87fd10afb9df8f9ad29b4c2d08ed80d2aa16677b17dd4d67be68eefbfe1f22" href="https://github.com/nrfconnect/sdk-nrf/commit/053408845f4a351f0af8253b91bedc1d811f69e9#diff-ed87fd10afb9df8f9ad29b4c2d08ed80d2aa16677b17dd4d67be68eefbfe1f22" rel="noopener noreferrer" target="_blank"&gt;https://github.com/nrfconnect/sdk-nrf/commit/053408845f4a351f0af8253b91bedc1d811f69e9#diff-ed87fd10afb9df8f9ad29b4c2d08ed80d2aa16677b17dd4d67be68eefbfe1f22&lt;/a&gt;, includes the changes on samples. You can refer to any sample or application to do what you need to modify.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span dir="ltr"&gt;It showcases the following two changes (apart of KConfig change) for matter:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The folder has been renamed from &lt;code&gt;child_image/hci_rpmsg&lt;/code&gt; to &lt;code&gt;child_image/hci_ipc&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;CMakeLists.txt: &lt;a title="https://github.com/nrfconnect/sdk-nrf/commit/053408845f4a351f0af8253b91bedc1d811f69e9#diff-e2a911094a594e6eaa6d1ea8625cd108692a9c90cde60838b254573c94960fc0l12-r12" href="https://github.com/nrfconnect/sdk-nrf/commit/053408845f4a351f0af8253b91bedc1d811f69e9#diff-e2a911094a594e6eaa6d1ea8625cd108692a9c90cde60838b254573c94960fc0L12-R12" rel="noopener noreferrer" target="_blank"&gt;https://github.com/nrfconnect/sdk-nrf/commit/053408845f4a351f0af8253b91bedc1d811f69e9#diff-e2a911094a594e6eaa6d1ea8625cd108692a9c90cde60838b254573c94960fc0L12-R12&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;-Amanda H.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476426?ContentTypeID=1</link><pubDate>Tue, 02 Apr 2024 05:49:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d40df982-b327-457a-96fb-f620dadb9a04</guid><dc:creator>Dan</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/members/amanda"&gt;Amanda Hsieh&lt;/a&gt;&amp;nbsp; - any guidance from the Nordic team? Our board is a custom board using the NRF5340. We don&amp;#39;t anywhere explicitly set the CONFIG_BT_RPMSG (so it must be getting included somewhere) and as far as we can tell includes all use 2.6.0 code paths. Is there any other information we can provide to help you help us? Thanks! Dan.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476403?ContentTypeID=1</link><pubDate>Mon, 01 Apr 2024 18:39:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f8d1fb00-4bbf-4c58-b73d-71f9b94ab1c5</guid><dc:creator>kammutierspule</dc:creator><description>&lt;p&gt;I was able to fix it. My project has scripts based on the dk board definitions, so I update it (overwritten &amp;amp; adapt) to the new 2.6.0.&lt;br /&gt;If you are selecting a board from list it may be including other pre-configured boards from nordic and maybe that is causing your define.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476379?ContentTypeID=1</link><pubDate>Mon, 01 Apr 2024 02:42:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7ed3458a-4570-45a6-b728-1207509396e2</guid><dc:creator>Dan</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/members/kammutierspule"&gt;kammutierspule&lt;/a&gt;&amp;nbsp; - thanks for your suggestion and for sharing that you also are running into this issue. Were you able to successfully resolve it?&lt;br /&gt;&lt;br /&gt; I checked my board definition files directory and nowhere am I defining or referencing&amp;nbsp;CONFIG_BT_RPMSG. And when I trace through which board config files and .dts files are getting included, they are all coming from the 2.6.0 version of the code tree.&lt;/p&gt;
&lt;p&gt;So I am still at a loss of what to try next. Appreciate any guidance/help!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476353?ContentTypeID=1</link><pubDate>Fri, 29 Mar 2024 13:51:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bbd3092a-45e7-4925-81c8-6bee79e1fe97</guid><dc:creator>kammutierspule</dc:creator><description>&lt;p&gt;Hi Dan, I&amp;#39;m facing the same problem,&lt;br /&gt;I believe you are using the board definitions from a previous sdk (eg some sdk example)&lt;br /&gt;looks on the new Kconfig.defconfig&lt;br /&gt;you may want to update to new board definitions&lt;br /&gt;ncs/v2.6.0/zephyr/boards/arm/*&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476333?ContentTypeID=1</link><pubDate>Fri, 29 Mar 2024 06:11:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ef273ee7-3683-49bb-bdb3-3c881a099ab9</guid><dc:creator>Dan</dc:creator><description>&lt;p&gt;Hi Amanda - here is the build log:&lt;pre class="ui-code" data-mode="javascript"&gt;Building wb
west build --build-dir /Users/ydr/dev/nordic/wb/build_2.6.0 /Users/ydr/dev/nordic/wb --pristine --board wb_nrf5340_cpuapp --no-sysbuild -- -DNCS_TOOLCHAIN_VERSION=NONE -DBOARD_ROOT=/Users/ydr/dev/nordic;/Users/ydr/dev/nordic/wb -DCACHED_CONF_FILE=/Users/ydr/dev/nordic/wb/prj.conf -DDTC_OVERLAY_FILE=/Users/ydr/dev/nordic/wb/boards/wb_nrf5340_cpuapp.overlay

-- west build: generating a build system
Loading Zephyr default modules (Zephyr base).
-- Application: /Users/ydr/dev/nordic/wb
-- CMake version: 3.21.0
-- Found Python3: /opt/nordic/ncs/toolchains/580e4ef81c/opt/python@3.9/bin/python3.9 (found suitable version &amp;quot;3.9.6&amp;quot;, minimum required is &amp;quot;3.8&amp;quot;) found components: Interpreter 
-- Cache files will be written to: /Users/ydr/Library/Caches/zephyr
-- Zephyr version: 3.5.99 (/opt/nordic/ncs/v2.6.0/zephyr)
-- Found west (found suitable version &amp;quot;1.2.0&amp;quot;, minimum required is &amp;quot;0.14.0&amp;quot;)
-- Board: wb_nrf5340_cpuapp
-- Found host-tools: zephyr 0.16.5 (/opt/nordic/ncs/toolchains/580e4ef81c/opt/zephyr-sdk)
-- Found toolchain: zephyr 0.16.5 (/opt/nordic/ncs/toolchains/580e4ef81c/opt/zephyr-sdk)
-- Found Dtc: /opt/nordic/ncs/toolchains/580e4ef81c/bin/dtc (found suitable version &amp;quot;1.6.1&amp;quot;, minimum required is &amp;quot;1.4.6&amp;quot;) 
-- Found BOARD.dts: /Users/ydr/dev/nordic/boards/arm/wb_nrf5340/wb_nrf5340_cpuapp.dts
-- Found devicetree overlay: /Users/ydr/dev/nordic/wb/boards/wb_nrf5340_cpuapp.overlay
-- Generated zephyr.dts: /Users/ydr/dev/nordic/wb/build_2.6.0/zephyr/zephyr.dts
-- Generated devicetree_generated.h: /Users/ydr/dev/nordic/wb/build_2.6.0/zephyr/include/generated/devicetree_generated.h
-- Including generated dts.cmake file: /Users/ydr/dev/nordic/wb/build_2.6.0/zephyr/dts.cmake

warning: Experimental symbol COAP_SERVER is enabled.

Parsing /Users/ydr/dev/nordic/wb/Kconfig
Loaded configuration &amp;#39;/Users/ydr/dev/nordic/boards/arm/wb_nrf5340/wb_nrf5340_cpuapp_defconfig&amp;#39;
Merged configuration &amp;#39;/Users/ydr/dev/nordic/wb/prj.conf&amp;#39;
Configuration saved to &amp;#39;/Users/ydr/dev/nordic/wb/build_2.6.0/zephyr/.config&amp;#39;
Kconfig header saved to &amp;#39;/Users/ydr/dev/nordic/wb/build_2.6.0/zephyr/include/generated/autoconf.h&amp;#39;
-- Found GnuLd: /opt/nordic/ncs/toolchains/580e4ef81c/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.bfd (found version &amp;quot;2.38&amp;quot;) 
-- The C compiler identification is GNU 12.2.0
-- The CXX compiler identification is GNU 12.2.0
-- The ASM compiler identification is GNU
-- Found assembler: /opt/nordic/ncs/toolchains/580e4ef81c/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc
CMake Error at /opt/nordic/ncs/v2.6.0/zephyr/drivers/bluetooth/hci/CMakeLists.txt:5 (message):
  CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC


-- Configuring incomplete, errors occurred!
See also &amp;quot;/Users/ydr/dev/nordic/wb/build_2.6.0/CMakeFiles/CMakeOutput.log&amp;quot;.
See also &amp;quot;/Users/ydr/dev/nordic/wb/build_2.6.0/CMakeFiles/CMakeError.log&amp;quot;.
FATAL ERROR: command exited with status 1: /opt/nordic/ncs/toolchains/580e4ef81c/bin/cmake -DWEST_PYTHON=/opt/nordic/ncs/toolchains/580e4ef81c/opt/python@3.9/bin/python3.9 -B/Users/ydr/dev/nordic/wb/build_2.6.0 -GNinja -DBOARD=wb_nrf5340_cpuapp -DNCS_TOOLCHAIN_VERSION=NONE &amp;#39;-DBOARD_ROOT=/Users/ydr/dev/nordic;/Users/ydr/dev/nordic/wb&amp;#39; -DCACHED_CONF_FILE=/Users/ydr/dev/nordic/wb/prj.conf -DDTC_OVERLAY_FILE=/Users/ydr/dev/nordic/wb/boards/wb_nrf5340_cpuapp.overlay -S/Users/ydr/dev/nordic/wb

 *  The terminal process terminated with exit code: 1. &lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Thanks! Dan,&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476319?ContentTypeID=1</link><pubDate>Thu, 28 Mar 2024 20:24:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1393cca7-11f6-4b17-87a6-16b36c63bf49</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Could you share the complete log via Insert -&amp;gt; code?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476315?ContentTypeID=1</link><pubDate>Thu, 28 Mar 2024 20:00:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8ddfdb32-5640-41aa-a092-5412194ce20f</guid><dc:creator>Dan</dc:creator><description>&lt;p&gt;Hi Amanda - yes - I saw that, but it&amp;#39;s not clear to me how to fix it so it can build. I am not setting these configs anywhere in my code - they are getting included upstream (our application is a Matter application) and I don&amp;#39;t know where/what I should change to make it build. What do you recommend?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SDK 2.6.0 cmake error: CONFIG_BT_RPMSG has been renamed to CONFIG_BT_HCI_IPC</title><link>https://devzone.nordicsemi.com/thread/476313?ContentTypeID=1</link><pubDate>Thu, 28 Mar 2024 19:43:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2de833ff-f6da-49d0-be76-00af2871ebfc</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Due to the Easter holidays in Norway, we are less staffed than usual.&amp;nbsp;You can expect a delayed answer.&amp;nbsp;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The HCI implementation for both the Host and the Controller sides has been renamed for the IPC transport. The CONFIG_BT_RPMSG Kconfig option is now CONFIG_BT_HCI_IPC, and the zephyr,bt-hci-rpmsg-ipc Devicetree chosen is now zephyr,bt-hci-ipc. The existing sample has also been renamed, from samples/bluetooth/hci_rpmsg to samples/bluetooth/hci_ipc. (GitHub #64391)&lt;/p&gt;
&lt;p&gt;See the&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/releases/migration-guide-3.6.html#bluetooth"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/releases/migration-guide-3.6.html#bluetooth&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Amanda H.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>