<?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 What's the difference between &amp;quot;bootm LOADADDR RDADDR&amp;quot; and initrd=RDADDR on kernel cmdline? in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278344#M31537</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm working with a ramdisk file as it is built by buildroot.&lt;/P&gt;&lt;P&gt;I am able to boot fine if I do this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; setenv bootargs 'console=ttymxc0,115200 ip=dhcp' &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; tftpboot 0x11800000 uramdisk.img; tftpboot 0x12000000 uImage_w_dtb; bootm 0x12000000 0x11800000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;however, the kernel crashes saying it can't find rootfs if I do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; setenv bootargs 'console=ttymxc0,115200 initrd=0x11800000 ip=dhcp'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; tftpboot 0x11800000 uramdisk.img; tftpboot 0x12000000 uImage_w_dtb; bootm&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;Shouldn't either of these boot methods work the same way?&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Nov 2013 15:31:52 GMT</pubDate>
    <dc:creator>EdSutter</dc:creator>
    <dc:date>2013-11-14T15:31:52Z</dc:date>
    <item>
      <title>What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278344#M31537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm working with a ramdisk file as it is built by buildroot.&lt;/P&gt;&lt;P&gt;I am able to boot fine if I do this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; setenv bootargs 'console=ttymxc0,115200 ip=dhcp' &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; tftpboot 0x11800000 uramdisk.img; tftpboot 0x12000000 uImage_w_dtb; bootm 0x12000000 0x11800000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;however, the kernel crashes saying it can't find rootfs if I do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; setenv bootargs 'console=ttymxc0,115200 initrd=0x11800000 ip=dhcp'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;U-Boot&amp;gt; tftpboot 0x11800000 uramdisk.img; tftpboot 0x12000000 uImage_w_dtb; bootm&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;Shouldn't either of these boot methods work the same way?&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 15:31:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278344#M31537</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2013-11-14T15:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278345#M31538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a question for your first approach.&lt;/P&gt;&lt;P&gt;To use bootcmd with two parameter, you must be using mkimage to process uImage.&lt;/P&gt;&lt;P&gt;What value have you set for -A and -e option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a similar problem.&lt;/P&gt;&lt;P&gt;But in my case, using bootcmd with two parameter is not working either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 23:53:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278345#M31538</guid>
      <dc:creator>jongjinyi</dc:creator>
      <dc:date>2014-01-07T23:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: Re: What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278346#M31539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I assume you mean "... To use bootm command..." &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use this mkimage command line:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;mkimage -A arm -O linux -T kernel -C none -a 0x10008000 -e 0x10008000 -d arch/arm/boot/zImage /tftpboot/uImage&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jan 2014 12:51:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278346#M31539</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2014-01-08T12:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278347#M31540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ed, your second set of commands above would only work if you have the initrd already compiled with kernel and in that case tftping the rootfs is irrelevant. So you either tftp both kernel and ramdisk and you have to provide both addresses separately or you boot a kernel that already has the ramdisk linked to it then you would only bootm the kernel. Check the related config parameters while you are compiling the kernel. For having the ramdisk part of the kernel you will have to provide the path where kernel finds a ramdisk while compiling it. Hope this helps.&lt;/P&gt;&lt;P&gt;Sinan Akman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jan 2014 23:12:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278347#M31540</guid>
      <dc:creator>sinanakman</dc:creator>
      <dc:date>2014-01-23T23:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278348#M31541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;P&gt;Had your issue got resolved? If yes, we are going to close the discussion in 3 days. If you still need help please feel &lt;/P&gt;&lt;P&gt;free to contact Freescale.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Yixing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 06:31:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278348#M31541</guid>
      <dc:creator>YixingKong</dc:creator>
      <dc:date>2014-02-20T06:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278349#M31542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sinan,&lt;/P&gt;&lt;P&gt;Not sure what you mean here.&amp;nbsp; According to Documentation/kernel-parameters.txt, the "initrd=" parameter is used to specify the location of the initial ramdisk.&amp;nbsp; Isn't that the same purpose as the "RDADDR" argument with the "bootm LOADADDR RDADDR" command?&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 13:55:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278349#M31542</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2014-02-20T13:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278350#M31543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yixing, &lt;/P&gt;&lt;P&gt;No it hasn't been resolved, but its not that important. I would like to get an answer, but if you need to close this out for some reason go for it..&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 13:56:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278350#M31543</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2014-02-20T13:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference between "bootm LOADADDR RDADDR" and initrd=RDADDR on kernel cmdline?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278351#M31544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;P&gt;I am going to branch your discussion into an internal group and assign engineer to answer your questions.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Yixing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Feb 2014 03:08:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/What-s-the-difference-between-quot-bootm-LOADADDR-RDADDR-quot/m-p/278351#M31544</guid>
      <dc:creator>YixingKong</dc:creator>
      <dc:date>2014-02-21T03:08:53Z</dc:date>
    </item>
  </channel>
</rss>

