<?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 Layout of Freescale kernel git repository in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181113#M7695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear Experts,  I am trying to understand the layout of the Freescale git kernel repository at &lt;/SPAN&gt;&lt;A href="http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git"&gt;http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git&lt;/A&gt;&lt;SPAN&gt; .  I'm not a git expert. I had hoped that by cloning that URL I'd get the most up-to-date i.MX kernel source. In fact, I end up with something that doesn't work because things are missing, including the early serial console (mxc_uart_early.c) and the AHCI (SATA) bus glue (ahci_sata.c).  On the other hand, it seems that different "heads" in that repository, e.g. &lt;/SPAN&gt;&lt;A href="http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git;a=tree;h=refs/heads/imx_2.6.38_11.09.01;hb=imx_2.6.38_11.09.01"&gt;http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git;a=tree;h=refs/heads/imx_2.6.38_11.09.01;hb=imx_2.6.38_11.09.01&lt;/A&gt;&lt;SPAN&gt; do include these things (though I've not yet tried to build one). But that's (presumably) 2.6.38.  So, what's going on here? Is it just my lack of git skills that are making this difficult?  Thanks, Phil.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 Oct 2011 16:30:35 GMT</pubDate>
    <dc:creator>PhilEndecott</dc:creator>
    <dc:date>2011-10-29T16:30:35Z</dc:date>
    <item>
      <title>Layout of Freescale kernel git repository</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181113#M7695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear Experts,  I am trying to understand the layout of the Freescale git kernel repository at &lt;/SPAN&gt;&lt;A href="http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git"&gt;http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git&lt;/A&gt;&lt;SPAN&gt; .  I'm not a git expert. I had hoped that by cloning that URL I'd get the most up-to-date i.MX kernel source. In fact, I end up with something that doesn't work because things are missing, including the early serial console (mxc_uart_early.c) and the AHCI (SATA) bus glue (ahci_sata.c).  On the other hand, it seems that different "heads" in that repository, e.g. &lt;/SPAN&gt;&lt;A href="http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git;a=tree;h=refs/heads/imx_2.6.38_11.09.01;hb=imx_2.6.38_11.09.01"&gt;http://opensource.freescale.com/git?p=imx/linux-2.6-imx.git;a=tree;h=refs/heads/imx_2.6.38_11.09.01;hb=imx_2.6.38_11.09.01&lt;/A&gt;&lt;SPAN&gt; do include these things (though I've not yet tried to build one). But that's (presumably) 2.6.38.  So, what's going on here? Is it just my lack of git skills that are making this difficult?  Thanks, Phil.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Oct 2011 16:30:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181113#M7695</guid>
      <dc:creator>PhilEndecott</dc:creator>
      <dc:date>2011-10-29T16:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Layout of Freescale kernel git repository</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181114#M7696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The git repository is based on the mainline kernel, so you will see different tags and branches that pertain to the mainline only (there is little mx5 code there).&lt;/P&gt;&lt;P&gt;You are right, you will need to check out the different mx* tags. They correspond to the different releases.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Oct 2011 16:39:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181114#M7696</guid>
      <dc:creator>rlorriaux</dc:creator>
      <dc:date>2011-10-29T16:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Layout of Freescale kernel git repository</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181115#M7697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;right, do something like&lt;/P&gt;&lt;P&gt;git branch -a&lt;/P&gt;&lt;P&gt;git checkout -t origin/imx_2.6.35_11.05.01&lt;/P&gt;&lt;P&gt;will get you to the imx branch&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it pains me that i could not reply via email, each time i have to visit the forum to reply, very inconvenient.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Oct 2011 20:31:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181115#M7697</guid>
      <dc:creator>XXiao1z</dc:creator>
      <dc:date>2011-10-29T20:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Layout of Freescale kernel git repository</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181116#M7698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&amp;gt; git branch -a &amp;gt; git checkout -t origin/imx_2.6.35_11.05.01  Well I did something like that.  (Except that would be the 2.6.35 kernel. I want something new.)  Can anyone recommend any git documentation that will teach syntax to that level of sophistication? I have encountered various git books, which stop short of that sort of thing, and the man pages, which just define things in terms of other jargon...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Oct 2011 21:56:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181116#M7698</guid>
      <dc:creator>PhilEndecott</dc:creator>
      <dc:date>2011-10-29T21:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Layout of Freescale kernel git repository</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181117#M7699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pro Git (&lt;A href="http://progit.org/book/" target="_blank"&gt;http://progit.org/book/&lt;/A&gt;) is one of the best resources for beginners. The man pages might be difficult to grasp at first.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Oct 2011 22:01:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Layout-of-Freescale-kernel-git-repository/m-p/181117#M7699</guid>
      <dc:creator>rlorriaux</dc:creator>
      <dc:date>2011-10-29T22:01:10Z</dc:date>
    </item>
  </channel>
</rss>

