<?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>LayerscapeのトピックHow to disable uboot couting down feature during serial console</title>
    <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940506#M4598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a TWR-LS1021a Eva board and I am using LSDK1906 to build the kernel. My kernel version is 4.19.46&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I want to disable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: Arial, Helvetica, sans-serif; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;"Hit any key to stop autoboot: &amp;nbsp;0 "&lt;/SPAN&gt; this feature every time during boot so I wont be able to access to the u-boot command window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did try to disable the tty during the menuconfig and also hacking kernel to make the console logs as less as possible but&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still I can see the u-boot counting down during the boot time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone knows how to disable that counting down feature so no one can access to the u-boot prompt command window?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Aug 2019 19:45:57 GMT</pubDate>
    <dc:creator>jiye</dc:creator>
    <dc:date>2019-08-19T19:45:57Z</dc:date>
    <item>
      <title>How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940506#M4598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a TWR-LS1021a Eva board and I am using LSDK1906 to build the kernel. My kernel version is 4.19.46&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I want to disable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: Arial, Helvetica, sans-serif; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;"Hit any key to stop autoboot: &amp;nbsp;0 "&lt;/SPAN&gt; this feature every time during boot so I wont be able to access to the u-boot command window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did try to disable the tty during the menuconfig and also hacking kernel to make the console logs as less as possible but&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still I can see the u-boot counting down during the boot time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone knows how to disable that counting down feature so no one can access to the u-boot prompt command window?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Aug 2019 19:45:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940506#M4598</guid>
      <dc:creator>jiye</dc:creator>
      <dc:date>2019-08-19T19:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940507#M4599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The following is said in U-boot documentation, Section 5.10 "U-boot Environment Variables":&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE&gt;&lt;STRONG&gt;bootdelay&lt;/STRONG&gt;&lt;/CODE&gt;: After reset, U-Boot will wait this number of seconds before it executes the contents of the &lt;CODE&gt;bootcmd&lt;/CODE&gt; variable. During this time a countdown is printed, which can be interrupted by pressing any key. &lt;BR /&gt; Set this variable to &lt;CODE&gt;0&lt;/CODE&gt; boot without delay. Be careful: depending on the contents of your &lt;CODE&gt;bootcmd&lt;/CODE&gt; variable, this can prevent you from entering interactive commands again forever! &lt;BR /&gt; Set this variable to &lt;CODE&gt;-1&lt;/CODE&gt; to disable autoboot. Set this variable to &lt;CODE&gt;-2&lt;/CODE&gt; to boot without delay and not check for abort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To set this variable you can type in U-boot prompt:&lt;/P&gt;&lt;P&gt;setenv bootdelay 0&lt;/P&gt;&lt;P&gt;saveenv&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Direct link to mentioned U-boot documentation page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.denx.de/wiki/view/DULG/UBootEnvVariables"&gt;https://www.denx.de/wiki/view/DULG/UBootEnvVariables&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Aug 2019 20:52:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940507#M4599</guid>
      <dc:creator>alexander_yakov</dc:creator>
      <dc:date>2019-08-19T20:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940508#M4600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply. But what if I want to re-enable then later. Is there a way to do all these settings from the linux ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another question is how to make this printing messages silent from the console? I did some research on lines people say I need to change the board header file.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Aug 2019 21:58:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940508#M4600</guid>
      <dc:creator>jiye</dc:creator>
      <dc:date>2019-08-19T21:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940509#M4601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To modify U-boot environment variables from Linux, you have to build two tools fw_printenv and fw_setenv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Making u-boot fully silent may be a bit tricky - it is known that "setenv silent 1", intended for this, does not make u-boot fully silent, so some minor changes in software may be required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Aug 2019 05:17:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940509#M4601</guid>
      <dc:creator>alexander_yakov</dc:creator>
      <dc:date>2019-08-27T05:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940510#M4602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply. Would you be able to provide a bit more detail of how to build that two tools fw_printenv and fw_setenv ? are they from the kernel compilation?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Aug 2019 13:19:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940510#M4602</guid>
      <dc:creator>jiye</dc:creator>
      <dc:date>2019-08-27T13:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940511#M4603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please search this community by "fw_printenv" keyword. For example, please look this topic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/thread/488024"&gt;https://community.nxp.com/thread/488024&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2019 05:10:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940511#M4603</guid>
      <dc:creator>alexander_yakov</dc:creator>
      <dc:date>2019-08-28T05:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940512#M4604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also regarding your previous reply if I set the bootdelay to -2 does that mean I will never have access to the u-boot prompt?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2019 00:28:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940512#M4604</guid>
      <dc:creator>jiye</dc:creator>
      <dc:date>2019-08-29T00:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940513#M4605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Set this variable to &lt;CODE&gt;-2&lt;/CODE&gt; to boot without delay and not check for abort." means, as per my understanding, that U-boot will skip this check and go directly to booting. This does not mean that you will never have access to the u-boot prompt, because&lt;/P&gt;&lt;P&gt;a) this setting can be changed back by modifying E-boot environment variables from Linux, as we already discussed&lt;/P&gt;&lt;P&gt;b) U-boot can boot Linux successfully only if Linux image is present and valid. In case if booting is not possible, U-boot will obviously stop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2019 19:41:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940513#M4605</guid>
      <dc:creator>alexander_yakov</dc:creator>
      <dc:date>2019-09-03T19:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940514#M4606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Hi Alex,&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;After I&amp;nbsp;run "apt-get install u-boot-tools"&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;then I perform&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit;"&gt;fw_printenv in the linux it tells me that&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit;"&gt;Cannot parse config file '/etc/fw_env.config': No such file or directory&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit;"&gt;Have you ever encountered this issue before?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2019 12:27:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940514#M4606</guid>
      <dc:creator>jiye</dc:creator>
      <dc:date>2019-09-26T12:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940515#M4607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I can understand, this file should be created by used and it should reflect actual flash memory configuration.&lt;/P&gt;&lt;P&gt;Please look, for example, this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/ARM-software/u-boot/blob/master/tools/env/fw_env.config"&gt;https://github.com/ARM-software/u-boot/blob/master/tools/env/fw_env.config&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Oct 2019 16:49:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/940515#M4607</guid>
      <dc:creator>alexander_yakov</dc:creator>
      <dc:date>2019-10-01T16:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable uboot couting down feature during serial console</title>
      <link>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/1188938#M7096</link>
      <description>&lt;P&gt;I have changed it to -2 but it is reflected as "-2" i.e. with double inverted commas. See below screenshots&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="keyurthumar_0-1606305659805.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/130980i1D8A7B78618832F3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="keyurthumar_0-1606305659805.png" alt="keyurthumar_0-1606305659805.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="keyurthumar_1-1606305742863.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/130981i1CD610E6BD49F178/image-size/medium?v=v2&amp;amp;px=400" role="button" title="keyurthumar_1-1606305742863.png" alt="keyurthumar_1-1606305742863.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 12:02:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/How-to-disable-uboot-couting-down-feature-during-serial-console/m-p/1188938#M7096</guid>
      <dc:creator>keyurthumar</dc:creator>
      <dc:date>2020-11-25T12:02:39Z</dc:date>
    </item>
  </channel>
</rss>

