<?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のトピックLS1043ARDB SDK v0.5 support USB</title>
    <link>https://community.nxp.com/t5/Layerscape/LS1043ARDB-SDK-v0-5-support-USB/m-p/462516#M593</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the USB supported for the LS1043A SDK v0.5?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If supported, how can I boot from USB on the LS1043ARDB?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking through the SDK v0.5 RM, it is unclear how to boot from the USB?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not currently supported, is it on the roadmap and for when?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Apr 2016 03:56:17 GMT</pubDate>
    <dc:creator>pro-supportengi</dc:creator>
    <dc:date>2016-04-20T03:56:17Z</dc:date>
    <item>
      <title>LS1043ARDB SDK v0.5 support USB</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1043ARDB-SDK-v0-5-support-USB/m-p/462516#M593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the USB supported for the LS1043A SDK v0.5?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If supported, how can I boot from USB on the LS1043ARDB?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking through the SDK v0.5 RM, it is unclear how to boot from the USB?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not currently supported, is it on the roadmap and for when?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 03:56:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1043ARDB-SDK-v0-5-support-USB/m-p/462516#M593</guid>
      <dc:creator>pro-supportengi</dc:creator>
      <dc:date>2016-04-20T03:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: LS1043ARDB SDK v0.5 support USB</title>
      <link>https://community.nxp.com/t5/Layerscape/LS1043ARDB-SDK-v0-5-support-USB/m-p/462517#M594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;SPAN class="jive-username-link jiveTT-hover-user"&gt;Tracy Smith,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="jive-username-link jiveTT-hover-user"&gt;Do you mean boot u-boot from USB or boot Linux from USB?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="jive-username-link jiveTT-hover-user"&gt;For boot u-boot from USB, it is not supported and no planing to support in the coming release Linux SDK.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If you mean boot Linux from USB, it is supported.&lt;SPAN class="jive-username-link jiveTT-hover-user"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Please refer to the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Connect the USB devices to the Linux Host PC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create the partitions by "fdisk /dev/sdb", one ext2 partition(sdb1).&lt;/P&gt;&lt;P&gt;&amp;nbsp; # fdisk /dev/sdb &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Use the mkfs.ext2 command to create the filesystems.&lt;/P&gt;&lt;P&gt;&amp;nbsp; # mkfs.ext2 /dev/sdb1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Copy the file system to USB devices by extrating the &amp;lt;rootfs&amp;gt;.tar.gz ,Remove the tarball after extracting rootfs.&lt;/P&gt;&lt;P&gt;&amp;nbsp; # cp &amp;lt;rootfs&amp;gt;.tar.gz&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp; # tar -zxvf &amp;lt;rootfs&amp;gt;.tar.gz&lt;/P&gt;&lt;P&gt;&amp;nbsp; # rm &amp;lt;rootfs&amp;gt;.tar.gz&lt;/P&gt;&lt;P&gt;&amp;nbsp; Copy uImage and dtb file to /boot folder.&lt;/P&gt;&lt;P&gt;5. Plug in the USB devices to the target board and power on.&lt;/P&gt;&lt;P&gt;6. Set the environment in uboot for USB boot.&lt;/P&gt;&lt;P&gt;&amp;nbsp; # setenv usbboot "setenv bootargs root=/dev/sdb1 rw console=ttyS0,115200 rootdelay=5; tftpboot $loadaddr /boot/$bootfile; tftpboot $fdtaddr /boot/$fdtfile;bootm $loadaddr - $fdtaddr'&lt;/P&gt;&lt;P&gt;&amp;nbsp; # run usbboot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Yiping&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2016 10:17:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Layerscape/LS1043ARDB-SDK-v0-5-support-USB/m-p/462517#M594</guid>
      <dc:creator>yipingwang</dc:creator>
      <dc:date>2016-04-21T10:17:12Z</dc:date>
    </item>
  </channel>
</rss>

