<?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>Unable to remove the startup message: &amp;quot;*** Booting Zephyr OS build..&amp;quot;</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/102123/unable-to-remove-the-startup-message-booting-zephyr-os-build</link><description>Hello, I&amp;#39;m using the example &amp;quot;smp_client_ble,&amp;quot; and I can&amp;#39;t manage to remove the boot message. 
 Below is my .prj file: 
 
 
 My toolchain is: NRF Connect SDK V2.2.0 
 I am using Visual Studio Code with Zephyr</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 24 Sep 2024 08:24:00 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/102123/unable-to-remove-the-startup-message-booting-zephyr-os-build" /><item><title>RE: Unable to remove the startup message: "*** Booting Zephyr OS build.."</title><link>https://devzone.nordicsemi.com/thread/503516?ContentTypeID=1</link><pubDate>Tue, 24 Sep 2024 08:24:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:093e9b4a-db4d-4764-8749-baa92704d306</guid><dc:creator>J0sh1101</dc:creator><description>&lt;p&gt;Hey, you need to add this flag in conf, then the NCS boot banner will not be displayed:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;div&gt;&lt;span&gt;&lt;/span&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_NCS_BOOT_BANNER=n&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to remove the startup message: "*** Booting Zephyr OS build.."</title><link>https://devzone.nordicsemi.com/thread/437712?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 14:44:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:51545a2e-857d-4ee4-b052-45730b117b47</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;I have tested on nRF52840-dk v2.0.2. Have you also tried on nrf52840-dk?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to remove the startup message: "*** Booting Zephyr OS build.."</title><link>https://devzone.nordicsemi.com/thread/437693?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 13:54:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0b4027d9-c0a9-4313-b042-a2b38e7f0b3c</guid><dc:creator>Francesco Piscopo</dc:creator><description>&lt;p&gt;&lt;span&gt;Hello, thank you for the response. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I tried to add:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_LOG=y
CONFIG_LOG_MODE_IMMEDIATE=y&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;but I keep seeing the booting banner.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Can I send you my project? I don&amp;#39;t know what else I could do to resolve it.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unable to remove the startup message: "*** Booting Zephyr OS build.."</title><link>https://devzone.nordicsemi.com/thread/437686?ContentTypeID=1</link><pubDate>Fri, 21 Jul 2023 13:34:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ade604e5-cc6a-4c2e-a2bd-3c01a06b2191</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;I have tested how to remove booting banner using central_smp_client sample in both NCS v2.2.0 and v2.4.0. In both cases, Zephyr banner message was successfully removed from the log. Main configuration option to be used in this case is CONFIG_BOOT_BANNER=n which was already present in your configuration. Starting from provided central_smp_client sample, I changed default prj.conf file from the sample and included your changes. Modifications of your prj.conf are shown below.&lt;br /&gt;in NCS v2.2.0&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;# added to Config logger section
CONFIG_LOG=y
CONFIG_LOG_MODE_IMMEDIATE=y&lt;/pre&gt;&lt;br /&gt;in NCS v2.4.0&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;# added to Config logger
CONFIG_LOG=y
CONFIG_LOG_MODE_IMMEDIATE=y

# changes to mcumgr
#CONFIG_MCUMGR_SMP_UART=y
#CONFIG_MCUMGR_CMD_IMG_MGMT=y
CONFIG_IMG_MANAGER=y
CONFIG_MCUMGR_GRP_IMG=y&lt;/pre&gt;&lt;br /&gt;With these changes, you should have Zephyr banner message removed from the log.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>