<?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 Booting U-boot from SD in P-Series</title>
    <link>https://community.nxp.com/t5/P-Series/Booting-U-boot-from-SD/m-p/683801#M4162</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the prebuilt u-boot-sd-P1024RDB_SDCARD-git-r17.bin and tried copying it onto the SD card for booting it. I did the following: I created 3 partitions - 1 partition of 512MB in linux-swap format, 1 partition of 20MB in ext2 format and the remaining space of my 4GB SD card as ext3 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also did the following:&lt;/P&gt;&lt;P&gt;Ran mkswap on /dev/mmcblk0p1&lt;/P&gt;&lt;P&gt;Ran mkfs.ext2fs on /dev/mmcblk0p2&lt;/P&gt;&lt;P&gt;Ran mkfs.ext3fs on /dev/mmcblk0p3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After which I copied the prebuilt u-boot binary on the ext2 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also set the switch settings as given in the quick start guide for booting from SD/MMC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you tell me where I am going wrong? Or should I do something in addition to this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Jun 2017 14:04:55 GMT</pubDate>
    <dc:creator>pavankumarg</dc:creator>
    <dc:date>2017-06-12T14:04:55Z</dc:date>
    <item>
      <title>Booting U-boot from SD</title>
      <link>https://community.nxp.com/t5/P-Series/Booting-U-boot-from-SD/m-p/683801#M4162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the prebuilt u-boot-sd-P1024RDB_SDCARD-git-r17.bin and tried copying it onto the SD card for booting it. I did the following: I created 3 partitions - 1 partition of 512MB in linux-swap format, 1 partition of 20MB in ext2 format and the remaining space of my 4GB SD card as ext3 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also did the following:&lt;/P&gt;&lt;P&gt;Ran mkswap on /dev/mmcblk0p1&lt;/P&gt;&lt;P&gt;Ran mkfs.ext2fs on /dev/mmcblk0p2&lt;/P&gt;&lt;P&gt;Ran mkfs.ext3fs on /dev/mmcblk0p3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After which I copied the prebuilt u-boot binary on the ext2 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also set the switch settings as given in the quick start guide for booting from SD/MMC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you tell me where I am going wrong? Or should I do something in addition to this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jun 2017 14:04:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Booting-U-boot-from-SD/m-p/683801#M4162</guid>
      <dc:creator>pavankumarg</dc:creator>
      <dc:date>2017-06-12T14:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Booting U-boot from SD</title>
      <link>https://community.nxp.com/t5/P-Series/Booting-U-boot-from-SD/m-p/683802#M4163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; background: white;"&gt;Use the following command sequence for u-boot burning:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; background: white;"&gt;Under u-boot:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&amp;gt;tftp 1000000 &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;u-boot-sd-P1024RDB_SDCARD-git-r17.bin&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&amp;gt;mmc erase 8 0x800&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&amp;gt;mmc write 1000000 8 0x800&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;=&amp;gt;cpld reset sd&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Program the image to SD card in Linux.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;dd if=&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; u-boot-sd-P1024RDB_SDCARD-git-r17.bin&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt;"&gt; of=/dev/sdb bs=512 seek=8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Pavel Chubakov&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>Wed, 14 Jun 2017 11:26:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/Booting-U-boot-from-SD/m-p/683802#M4163</guid>
      <dc:creator>Pavel</dc:creator>
      <dc:date>2017-06-14T11:26:47Z</dc:date>
    </item>
  </channel>
</rss>

