<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>i.MX Processors中的主题 Re: Yocto busybox menuconfig</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248442#M22206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's good to add it in a project specific layer and save it there with a busybox_&amp;lt;version&amp;gt;.bbappend instructing bitbake to check the layer's path for overrides. This allow for later reuse of the changed configuration and also store of it under a SCM system (as GIT, for example).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Oct 2013 19:32:16 GMT</pubDate>
    <dc:creator>OtavioSalvador</dc:creator>
    <dc:date>2013-10-30T19:32:16Z</dc:date>
    <item>
      <title>Yocto busybox menuconfig</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248441#M22205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Yocto Project to access the busybox menuconfig system:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13831535079198610" jivemacro_uid="_13831535079198610" modifiedtitle="true"&gt;
&lt;P&gt;bitbake -c menuconfig busybox&lt;/P&gt;
&lt;P&gt;bitbake busybox&lt;/P&gt;
&lt;P&gt;bitbake fsl-image-fb&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;01. Execute the command menuconfig on the package busybox. This allows customization of busybox applets&lt;/P&gt;&lt;P&gt;02. Run all the tasks for package busybox&lt;/P&gt;&lt;P&gt;03. Create the final image, in this case the frame buffer image, see tmp/deploy/images for outputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Curtis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 17:23:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248441#M22205</guid>
      <dc:creator>CurtisWald</dc:creator>
      <dc:date>2013-10-30T17:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: Yocto busybox menuconfig</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248442#M22206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's good to add it in a project specific layer and save it there with a busybox_&amp;lt;version&amp;gt;.bbappend instructing bitbake to check the layer's path for overrides. This allow for later reuse of the changed configuration and also store of it under a SCM system (as GIT, for example).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 19:32:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248442#M22206</guid>
      <dc:creator>OtavioSalvador</dc:creator>
      <dc:date>2013-10-30T19:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: Yocto busybox menuconfig</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248443#M22207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Otavio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you elaborate on how this is best done with the Busybox Yocto build.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to enable 'init' within BusyBox which isn't enabled by the default configuration. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Run menuconfig&amp;nbsp; and enable 'init' configuration option.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;bitbake -c menuconfig busybox&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create a patch file for the of the changes to the '.config' file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;diff -Naur .config.old .config &amp;gt; busybox-enable-init-config.patch&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;3. &lt;/EM&gt;Add the patch file to my custom board layer in the busybox.bbappend file and copy the patch file into the appropriate location.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;SRC_URI_append = " &lt;A href="https://community.nxp.com/"&gt;file://busybox-enable-init-config.patch&lt;/A&gt;"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This then fails to build:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ERROR: Command Error: exit status: 1&amp;nbsp; Output:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Applying patch busybox-enable-init-config.patch&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;can't find file to patch at input line 3&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Perhaps you used the wrong -p or --strip option?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The text leading up to this was:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;--------------------------&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;|--- busybox-1.23.1/.config.old 2015-11-26 14:59:46.616876464 +1000&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;|+++ busybox-1.23.1/.config 2015-11-26 15:41:16.032997933 +1000&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;--------------------------&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;No file to patch.&amp;nbsp; Skipping patch.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This fails because the .config file doesn't exist at this stage of the build.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How should I apply my required changes to the Busybox configuration? Which file needs to be changed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Nov 2015 00:23:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248443#M22207</guid>
      <dc:creator>marcus123</dc:creator>
      <dc:date>2015-11-30T00:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Yocto busybox menuconfig</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248444#M22208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;New Yocto Project releases allow the use of "config fragments" to change busybox settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can add fragments and append them in SRC_URI. One example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://code.ossystems.com.br/gitweb?p=meta-ossystems-base.git;a=blob;f=recipes-core/busybox/busybox_%25.bbappend;h=4205d9bf902cad2b93a7977e9efbed5885de89f7;hb=refs/heads/jethro" title="http://code.ossystems.com.br/gitweb?p=meta-ossystems-base.git;a=blob;f=recipes-core/busybox/busybox_%25.bbappend;h=4205d9bf902cad2b93a7977e9efbed5885de89f7;hb=refs/heads/jethro"&gt;http://code.ossystems.com.br/gitweb?p=meta-ossystems-base.git;a=blob;f=recipes-core/busybox/busybox_%25.bbappend;h=4205d…&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2016 11:08:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/248444#M22208</guid>
      <dc:creator>OtavioSalvador</dc:creator>
      <dc:date>2016-02-04T11:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Yocto busybox menuconfig</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/1406902#M186485</link>
      <description>&lt;P&gt;Does Yocto use busybox by default? Is there more configuration to be done?&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 02:31:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Yocto-busybox-menuconfig/m-p/1406902#M186485</guid>
      <dc:creator>MichaelBMiner</dc:creator>
      <dc:date>2022-01-31T02:31:20Z</dc:date>
    </item>
  </channel>
</rss>

