<?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>topic Re: Copy file from USB storage to eMMC at U-Boot in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/1241368#M170463</link>
    <description>&lt;P&gt;Hi Jimmychan,&lt;/P&gt;&lt;P&gt;Is there any command to read uboot from emmc? I am loading uboot from USB and we have requirement to read uboot file from emmc. As uboot does not has file system can we make use of mmc read/write command ?&lt;BR /&gt;&lt;BR /&gt;Please try to answer this question.&lt;BR /&gt;&lt;BR /&gt;Thanks&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Mar 2021 13:19:30 GMT</pubDate>
    <dc:creator>rahul44</dc:creator>
    <dc:date>2021-03-07T13:19:30Z</dc:date>
    <item>
      <title>Copy file from USB storage to eMMC at U-Boot</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804677#M124279</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 had inbuilt eMMC in my board. I am using i.MX6UL platform.&lt;/P&gt;&lt;P&gt;I want to partition my inbuilt eMMC and I&amp;nbsp;want to copy files from USB storage to eMMC at U-Boot prompt. Can you explain what command I can use.&lt;/P&gt;&lt;P&gt;If you provided the script it is more helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2018 09:50:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804677#M124279</guid>
      <dc:creator>devendradevadi1</dc:creator>
      <dc:date>2018-11-06T09:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Copy file from USB storage to eMMC at U-Boot</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804678#M124280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is no filesystem in u-boot. so there is no command to copy files from USB storage to EMMC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Nov 2018 06:05:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804678#M124280</guid>
      <dc:creator>jimmychan</dc:creator>
      <dc:date>2018-11-09T06:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Copy file from USB storage to eMMC at U-Boot</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804679#M124281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;@there is no filesystem in u-boot.&lt;/P&gt;&lt;P&gt;From the U-boot Quick reference manual I found that, the command "fatload" is used to load binary file from a dos filesystem. I know how to use /load the files from eMMC if the eMMC is in DOS partition.&lt;/P&gt;&lt;P&gt;"there is no filesystem in u-boot." means ?&lt;/P&gt;&lt;P&gt;Can I use "fatload" command for USB storage also if the USB storage is in fat format?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@so there is no command to copy files from USB storage to EMMC.&lt;/P&gt;&lt;P&gt;Then how I can make use of USB storage at U-boot level?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2018 05:42:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804679#M124281</guid>
      <dc:creator>devendradevadi1</dc:creator>
      <dc:date>2018-11-13T05:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Copy file from USB storage to eMMC at U-Boot</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804680#M124282</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 can able to use the file/binary from USB storage and eMMC both using fatload command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fatload usb 0 addredd1 filename - Use/Load the file from USB storage to Memory&lt;/P&gt;&lt;P&gt;fatload mmc 0 address2 filename - Use/Load&amp;nbsp; the file from eMMC to Memory.&lt;/P&gt;&lt;P&gt;Above command works.&lt;/P&gt;&lt;P&gt;But my requirement is, I need to copy a binary file from USB storage to eMMC. I need to copy binary file from memory to eMMC which is already copied to memory by USB.&lt;/P&gt;&lt;P&gt;Here what addresses&amp;nbsp; I can use? How I can came to know what range of addresses I can use for this general purpose operation (write/read)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2018 06:27:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804680#M124282</guid>
      <dc:creator>devendradevadi1</dc:creator>
      <dc:date>2018-11-13T06:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Copy file from USB storage to eMMC at U-Boot</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804681#M124283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is no command for saving/writing the data to a file to store in eMMC. You may modify the u-boot source code to add this command. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 02:40:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/804681#M124283</guid>
      <dc:creator>jimmychan</dc:creator>
      <dc:date>2018-11-16T02:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Copy file from USB storage to eMMC at U-Boot</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/1241368#M170463</link>
      <description>&lt;P&gt;Hi Jimmychan,&lt;/P&gt;&lt;P&gt;Is there any command to read uboot from emmc? I am loading uboot from USB and we have requirement to read uboot file from emmc. As uboot does not has file system can we make use of mmc read/write command ?&lt;BR /&gt;&lt;BR /&gt;Please try to answer this question.&lt;BR /&gt;&lt;BR /&gt;Thanks&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Mar 2021 13:19:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Copy-file-from-USB-storage-to-eMMC-at-U-Boot/m-p/1241368#M170463</guid>
      <dc:creator>rahul44</dc:creator>
      <dc:date>2021-03-07T13:19:30Z</dc:date>
    </item>
  </channel>
</rss>

