<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/esd/common, branch v1.3.0</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/board/esd/common?h=v1.3.0</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/esd/common?h=v1.3.0'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2007-08-16T17:50:53Z</updated>
<entry>
<title>Merge with git://www.denx.de/git/u-boot.git</title>
<updated>2007-08-16T17:50:53Z</updated>
<author>
<name>Stefan Roese</name>
<email>sr@denx.de</email>
</author>
<published>2007-08-16T17:50:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=fc9970137c8f187b5938e4926224e0f3d46c3476'/>
<id>urn:sha1:fc9970137c8f187b5938e4926224e0f3d46c3476</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ppc4xx: Remove #warning in esd auto_update.c</title>
<updated>2007-08-16T09:21:49Z</updated>
<author>
<name>Stefan Roese</name>
<email>sr@denx.de</email>
</author>
<published>2007-08-16T09:21:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=8fb6e80c06849e3013ac5c9350d8ed9e52967991'/>
<id>urn:sha1:8fb6e80c06849e3013ac5c9350d8ed9e52967991</id>
<content type='text'>
Signed-off-by: Stefan Roese &lt;sr@denx.de&gt;
</content>
</entry>
<entry>
<title>Merge with git://www.denx.de/git/u-boot.git</title>
<updated>2007-08-15T19:06:27Z</updated>
<author>
<name>Stefan Roese</name>
<email>sr@denx.de</email>
</author>
<published>2007-08-15T19:06:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b706d63559aeec352bc72dd86d7d5423c15f6a60'/>
<id>urn:sha1:b706d63559aeec352bc72dd86d7d5423c15f6a60</id>
<content type='text'>
</content>
</entry>
<entry>
<title>board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.</title>
<updated>2007-07-10T15:39:10Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2007-07-10T15:39:10Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=77a318545d57aefa844752465b94c7e09a3f26d0'/>
<id>urn:sha1:77a318545d57aefa844752465b94c7e09a3f26d0</id>
<content type='text'>
Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
Those always evaluated TRUE, and thus were always compiled
even when IDE really wasn't defined/wanted.

Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS</title>
<updated>2007-07-09T23:48:04Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2007-07-09T23:24:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=b9307262f8a9f3b5c9e15a6067eadc17407146f6'/>
<id>urn:sha1:b9307262f8a9f3b5c9e15a6067eadc17407146f6</id>
<content type='text'>
Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>Migrate esd 405EP boards to new NAND subsystem</title>
<updated>2007-07-09T08:55:39Z</updated>
<author>
<name>Matthias Fuchs</name>
<email>matthias.fuchs@esd-electronics.com</email>
</author>
<published>2007-07-09T08:10:04Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e09f7ab5749c345f924da272bea0521a73af5b11'/>
<id>urn:sha1:e09f7ab5749c345f924da272bea0521a73af5b11</id>
<content type='text'>
This patch prepares the migration from the legacy NAND driver
to U-Boot's new NAND subsystem for esd boards.

Signed-off-by: Matthias Fuchs &lt;matthias.fuchs@esd-electronics.com&gt;
</content>
</entry>
<entry>
<title>board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).</title>
<updated>2007-07-03T22:34:58Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@jdl.com</email>
</author>
<published>2007-06-12T00:03:19Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=5e378003d592ea828ec69d6defcd4de79096dd5c'/>
<id>urn:sha1:5e378003d592ea828ec69d6defcd4de79096dd5c</id>
<content type='text'>
This is a compatibility step that allows both the older form
and the new form to co-exist for a while until the older can
be removed entirely.

All transformations are of the form:
Before:
    #if (CONFIG_COMMANDS &amp; CFG_CMD_AUTOSCRIPT)
After:
    #if (CONFIG_COMMANDS &amp; CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)

Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>[PATCH 1_4] Merge common get_dev() routines for block devices</title>
<updated>2007-02-20T08:04:34Z</updated>
<author>
<name>Grant Likely</name>
<email>grant.likely@secretlab.ca</email>
</author>
<published>2007-02-20T08:04:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=735dd97b1b20e777d059c7b389fe9d70cd3f80c7'/>
<id>urn:sha1:735dd97b1b20e777d059c7b389fe9d70cd3f80c7</id>
<content type='text'>
Each of the filesystem drivers duplicate the get_dev routine.  This change
merges them into a single function in part.c

Signed-off-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;
</content>
</entry>
<entry>
<title>Fix JFFS2 support for legacy NAND driver.</title>
<updated>2006-04-08T17:08:06Z</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2006-04-08T17:08:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=6db39708117d6391a72f3fc3ea7860231b630270'/>
<id>urn:sha1:6db39708117d6391a72f3fc3ea7860231b630270</id>
<content type='text'>
Some more NAND cleanup and small fixes.
</content>
</entry>
<entry>
<title>Minor code cleanup</title>
<updated>2006-03-06T12:03:37Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@nyx.denx.de</email>
</author>
<published>2006-03-06T12:03:37Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=bfc81252c0de3bfcf92c7c35bc04341fb33e4e4e'/>
<id>urn:sha1:bfc81252c0de3bfcf92c7c35bc04341fb33e4e4e</id>
<content type='text'>
</content>
</entry>
</feed>
