<?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>NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/90503/ncs-2-0-custom-child-image-mcuboot-build</link><description>Hi, 
 In NCS 2.0, the ability to add a custom child image was added. This works fine but as soon as you include the mcuboot child image, the order of the child image builds changes. 
 For example, 
 If I build an application including mcuboot and the</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 14 Aug 2024 13:21:11 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/90503/ncs-2-0-custom-child-image-mcuboot-build" /><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/498297?ContentTypeID=1</link><pubDate>Wed, 14 Aug 2024 13:21:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e96f087d-50e3-4479-bd9d-33c6178477c2</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;1) The patch works with the multi-image build.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) Yes. I was trying to clarify if a fix got into an NCS release because back then, I was told that an official fix was going to be in the NCS 2.4 release.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/498283?ContentTypeID=1</link><pubDate>Wed, 14 Aug 2024 12:41:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e2b2d2b6-a607-410e-85ae-42cd4fb34845</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;I think maybe I misunderstand your question, so let me try to clarify:&lt;/p&gt;
&lt;p&gt;If you use the patch I linked, does this work?&lt;br /&gt;Are you really trying to clarify if the fix got into NCS officially?&lt;/p&gt;
&lt;p&gt;If so, the answer is: No the issue to custom child images with MCUboot with Multi-Image builds is not fixed in NCS, and will not be fixed. Either use the patch as a workaround, or upgrade to Sysbuild.&lt;/p&gt;
&lt;p&gt;The reason to why this was not fixed is that we prioritized to implement Sysbuild instead.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/498077?ContentTypeID=1</link><pubDate>Tue, 13 Aug 2024 13:40:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ae165a56-6be3-4f1d-8262-7085d1072e60</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Ah, I will look for the other patch tomorrow then&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/498074?ContentTypeID=1</link><pubDate>Tue, 13 Aug 2024 13:36:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6dc2cb4d-61d6-41ca-b5ea-9066f5c878dd</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi Sigurd,&lt;/p&gt;
&lt;p&gt;The patch that you pasted is currently what we are using.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/498073?ContentTypeID=1</link><pubDate>Tue, 13 Aug 2024 13:34:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bfd4ee2a-12c3-484d-a27a-660603843f92</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Aight.&lt;/p&gt;
&lt;p&gt;I did some digging and I think I found a patch:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://github.com/hakonfam/fw-nrfconnect-zephyr/commit/970c4323fba917b88361dd57c47dee2f5f2a009a"&gt;https://github.com/hakonfam/fw-nrfconnect-zephyr/commit/970c4323fba917b88361dd57c47dee2f5f2a009a&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;@@ -425,7 +425,9 @@ def parse_modules(zephyr_base, modules=None, extra_modules=None):
            sys.exit(f&amp;#39;{project}, given in ZEPHYR_EXTRA_MODULES, &amp;#39;
                     &amp;#39;is not a valid zephyr module&amp;#39;)

    for module in all_modules_by_name.values():
    for module in {**{x: all_modules_by_name[x] for x in all_modules_by_name if
        x != &amp;#39;mcuboot&amp;#39;}, **{x: all_modules_by_name[x] for x in
            all_modules_by_name if x == &amp;#39;mcuboot&amp;#39;}}.values():
        if not module.depends:
            start_modules.append(module)
        else:&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Can you give it a try and see if it works?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/498071?ContentTypeID=1</link><pubDate>Tue, 13 Aug 2024 13:26:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ee830436-3329-4b6c-83a7-b9f3ffd89f6b</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Sigurd,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;Yes. We can upgrade to v2.7.0 but that won&amp;#39;t happen for a couple of months. In the meantime, we&amp;#39;ll just use our existing patch to build with v2.6.1.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Ronald&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/498007?ContentTypeID=1</link><pubDate>Tue, 13 Aug 2024 11:03:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:495e3ea9-f034-4d25-bbcb-ce2de039aa8f</guid><dc:creator>Sigurd Hellesvik</dc:creator><description>&lt;p&gt;Hi Ronald,&lt;/p&gt;
&lt;p&gt;Would it be possible for you to upgrade to v2.7.0?&lt;/p&gt;
&lt;p&gt;The reason I ask is that in v2.7.0, we are moving away from the old Multi-image build to Sysbuild.&lt;/p&gt;
&lt;p&gt;With Sysbuild you should be able to add a custom image without any build order issues. Aka this will be the good fix for the issue.&lt;/p&gt;
&lt;p&gt;See &lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_sysbuild.html"&gt;https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/releases_and_maturity/migration/migration_sysbuild.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Sigurd Hellesvik&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/495853?ContentTypeID=1</link><pubDate>Fri, 26 Jul 2024 18:32:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ea080f2e-1091-437a-b9a7-cf2070425f75</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Torbj&amp;oslash;rn,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Did this fix get into v2.4.0?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I&amp;#39;m testing v2.6.1 and I still see the wrong build order. Can you send me that patch that was done? The link to the patch you gave me doesn&amp;#39;t work anymore.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;Thanks,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Ronald&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/407230?ContentTypeID=1</link><pubDate>Tue, 31 Jan 2023 08:30:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8d20817c-e753-4a73-aa47-569e0b7f7ef2</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;You welcome Ronald, only wish I had better news to share ;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/407173?ContentTypeID=1</link><pubDate>Mon, 30 Jan 2023 16:56:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:162392ea-dd39-4dc4-841b-9686054df9bd</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Torbj&amp;oslash;rn,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks for the update.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/407094?ContentTypeID=1</link><pubDate>Mon, 30 Jan 2023 12:27:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d77ccffe-8cc9-4876-b3d2-c2422dc22bb1</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi Ronald&lt;/p&gt;
&lt;p&gt;It seems this patch will not be included after all.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Instead another fix which makes it possible to configure the build order of the various images will be included.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Unfortunately it is doubtful it will make it for the v2.3.0 release since this is coming out shortly, most likely it will be included in the v2.4.0 release instead.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can check out the new patch &lt;a href="https://github.com/tejlmand/fw-nrfconnect-zephyr-1/commit/7063995bae0288f01fdc6994a3afe038753eb117"&gt;here&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/406934?ContentTypeID=1</link><pubDate>Fri, 27 Jan 2023 21:09:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:480dcf66-4671-4389-b6a7-9e74e0f811c4</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Torbj&amp;oslash;rn,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;When do you think this patch will get into an NCS release?&amp;nbsp;I don&amp;#39;t see this patch in the NCS 2.2.0 release.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/384027?ContentTypeID=1</link><pubDate>Wed, 31 Aug 2022 01:43:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:66f5b456-361c-4785-93a8-32158ada9329</guid><dc:creator>Wangshuhai</dc:creator><description>&lt;p&gt;&lt;span&gt;Hi&amp;nbsp;Ronald,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp;Amazing ! It&amp;#39;s fixed the error, it&amp;#39;s working !&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thank you very much!&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/384022?ContentTypeID=1</link><pubDate>Wed, 31 Aug 2022 00:37:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b9ec877c-0c83-4421-8167-e6a9064169bd</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi Wang,&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t I&amp;nbsp;think I got that error message before. One thing that I had to fix was the aci/CMakeLists.txt file. I had to&amp;nbsp;change &amp;quot;DOMAIN cpunet&amp;quot; to &amp;quot;DOMAIN CPUNET&amp;quot;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Ronald&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/383771?ContentTypeID=1</link><pubDate>Tue, 30 Aug 2022 03:11:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:faec820d-374c-4521-9f50-0cab30fe4bdf</guid><dc:creator>Wangshuhai</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Ronald,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I have try , i get like your same reason&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;error: &amp;#39;PM_CPUNET_B0N_CONTAINER_SIZE&amp;#39; undeclared&amp;nbsp;&lt;/p&gt;
&lt;p&gt;but i define the zephyr/module.yml aci and overwrite the&amp;nbsp;&lt;span style="color:#000000;"&gt;&lt;a class="Link--primary Truncate-text" style="color:#000000;" title="scripts/zephyr_module.py" href="https://github.com/nrfconnect/sdk-zephyr/compare/main...hakonfam:fw-nrfconnect-zephyr:patch1#diff-049a2a6846b11eb53b08146890439fca3c04fb6fc330cb4613214fee50e4a860"&gt;scripts/zephyr_module.py&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;How did your fixed it. Thanks!&lt;/p&gt;
&lt;div class="file-header d-flex flex-md-row flex-column flex-md-items-center file-header--expandable js-file-header js-skip-tagsearch " data-path="scripts/zephyr_module.py" data-short-path="049a2a6" data-anchor="diff-049a2a6846b11eb53b08146890439fca3c04fb6fc330cb4613214fee50e4a860" data-file-type=".py" data-file-deleted="false"&gt;
&lt;div class="file-actions pt-0 mb-md-0 mb-2 ml-md-2 flex-shrink-0 flex-md-justify-end"&gt;
&lt;div class="d-flex flex-justify-end"&gt;
&lt;div class="height-full d-flex flex-items-center Link--secondary"&gt;&lt;span&gt;Best regards&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/383768?ContentTypeID=1</link><pubDate>Tue, 30 Aug 2022 02:30:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9afab0bc-73c2-43a0-a48d-09716c3a000c</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi Wang,&lt;/p&gt;
&lt;p&gt;I think you need to add the following config options in your mcuboot .conf file.&lt;/p&gt;
&lt;p&gt;CONFIG_PCD=y&lt;/p&gt;
&lt;p&gt;CONFIG_PCD_APP=y&lt;/p&gt;
&lt;p&gt;Ronald&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/383765?ContentTypeID=1</link><pubDate>Tue, 30 Aug 2022 01:32:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0c792676-e410-47aa-8399-2c1e79552e31</guid><dc:creator>Wangshuhai</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Ronald&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp;Thank your quick reply. I add&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;CONFIG_SECURE_BOOT=y&lt;br /&gt;CONFIG_NCS_MCUBOOT_IN_BUILD=y&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;in child image pj.conf it tell me undefine PCD_SRAM.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1661822868910v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;my project tree like this .&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1661822999271v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;if i need write pm_static.yaml define the pcd address?&amp;nbsp; thanks&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/383763?ContentTypeID=1</link><pubDate>Tue, 30 Aug 2022 01:23:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fad94938-fa6f-4621-b967-90e0a712f560</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi Wang,&lt;/p&gt;
&lt;p&gt;Make sure you have the following config options in your child image:&lt;/p&gt;
&lt;p&gt;CONFIG_SECURE_BOOT=y&lt;br /&gt;CONFIG_NCS_MCUBOOT_IN_BUILD=y&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Ronald&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/383762?ContentTypeID=1</link><pubDate>Tue, 30 Aug 2022 01:15:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:632d0c3d-e2c2-4799-a439-1cea41d7e769</guid><dc:creator>Wangshuhai</dc:creator><description>&lt;div class="content full threaded-reply-content user-defined-markup" data-replyid="379784" data-userid="108816" data-permalink="~/f/nordic-q-a/90503/ncs-2-0-custom-child-image-mcuboot-build/379784"&gt;
&lt;div class="content"&gt;
&lt;p&gt;&lt;span&gt;Hi Ronald,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp;I&amp;#39;m working custom child image and mcuboot like your did. but i can&amp;#39;t build child image b0n , can you give me some advice.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&amp;nbsp; &amp;nbsp;I can build appcore include the network core like&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1661822069059v1.png" alt=" " /&gt;.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Wang&lt;/span&gt;&lt;/p&gt;
&lt;div&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/380918?ContentTypeID=1</link><pubDate>Wed, 10 Aug 2022 05:20:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:345b1be4-c37a-4390-8407-44477ce01e02</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I am currently out in travel, but I will check with the team next week. At best I think we are looking at a couple of months, but I will try to get you a more accurate estimate.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/380429?ContentTypeID=1</link><pubDate>Fri, 05 Aug 2022 14:55:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e3a9937d-96bd-4785-abb5-c101a970cd04</guid><dc:creator>variant</dc:creator><description>&lt;p&gt;Which NCS version do you think this patch will be incorporated?&amp;nbsp; We prefer not to patch the actual SDK.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/380428?ContentTypeID=1</link><pubDate>Fri, 05 Aug 2022 14:53:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4e351b09-ba73-4ab4-b933-c4b9750fc319</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Torbj&amp;oslash;rn,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks for the patch. It fixed the problem. You can close this ticket.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;Ronald&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/380365?ContentTypeID=1</link><pubDate>Fri, 05 Aug 2022 11:59:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0bac3e0f-88cd-4740-a581-86a9da4985da</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi Ron&lt;/p&gt;
&lt;p&gt;I got one of the developers to take a look at this, and he confirmed&amp;nbsp;that the issue in your case is caused by the cmake build order not being specified, leading to situations where mcuboot might be built earlier than child images on which it depends.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;At the moment the build system doesn&amp;#39;t provide any way for the project to change this, and the only way to fix it is to make changes to the build scripts themselves.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The developer provided a patch that you can check out &lt;a href="https://github.com/nrfconnect/sdk-zephyr/compare/main...hakonfam:fw-nrfconnect-zephyr:patch1"&gt;here&lt;/a&gt;.&lt;br /&gt;This change should ensure that mcuboot will be built last, which should solve the dependency issue.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I will report this issue internally so we can fix this properly in a later release, but for the time being I hope the patch I shared above will allow you to proceed with your release.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/380029?ContentTypeID=1</link><pubDate>Thu, 04 Aug 2022 06:35:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3d327b90-30ad-4cb0-95e8-d5f8008db95f</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Torbj&amp;oslash;rn,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I just realized that the modifications that I did to zephyr/module.yml will not work. The &amp;quot;aci&amp;quot; module doesn&amp;#39;t depend on &amp;quot;mcuboot&amp;quot;. It&amp;#39;s actually &amp;quot;mcuboot&amp;quot; that depends on &amp;quot;aci&amp;quot;.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NCS 2.0 custom child image + mcuboot build</title><link>https://devzone.nordicsemi.com/thread/380008?ContentTypeID=1</link><pubDate>Thu, 04 Aug 2022 02:19:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c77d4ad1-9cb2-4c76-aafc-d1c04ec152fc</guid><dc:creator>ronbo999</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;span&gt;Torbj&amp;oslash;rn,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;FYI. I tried updating the multicore zephyr/module.yml file to look like this&lt;/p&gt;
&lt;p&gt;$ cat zephyr/module.yml&lt;br /&gt;build:&lt;br /&gt; cmake: aci&lt;br /&gt; depends:&lt;br /&gt; - mcuboot&lt;/p&gt;
&lt;p&gt;but it didn&amp;#39;t change the build order. MCUboot still got built first.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>