<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/fs/jffs2, 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/fs/jffs2?h=v1.3.0</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/fs/jffs2?h=v1.3.0'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2007-07-10T16:07:56Z</updated>
<entry>
<title>fs/: Remove lingering references to CFG_CMD_* symbols.</title>
<updated>2007-07-10T16:07:56Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2007-07-10T16:07:56Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f40a7f3e3888b42a43674b099e5470022c8c544c'/>
<id>urn:sha1:f40a7f3e3888b42a43674b099e5470022c8c544c</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>fs/: Remove obsolete references to CONFIG_COMMANDS</title>
<updated>2007-07-09T22:56:50Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2007-07-09T22:56:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=dd60d1223b99a88a7216f3e041fe40634ad4c2bb'/>
<id>urn:sha1:dd60d1223b99a88a7216f3e041fe40634ad4c2bb</id>
<content type='text'>
Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>Fixing some typos etc. introduced mainly by cfg patches.</title>
<updated>2007-07-05T15:56:27Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2007-07-05T15:56:27Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=e4dbe1b215f5c6c462e76909d240bd96472b84de'/>
<id>urn:sha1:e4dbe1b215f5c6c462e76909d240bd96472b84de</id>
<content type='text'>
Signed-off-by: Wolfgang Denk &lt;wd@denx.de&gt;
</content>
</entry>
<entry>
<title>fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).</title>
<updated>2007-07-03T22:23:12Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@jdl.com</email>
</author>
<published>2007-06-12T00:02:20Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4e109ae98294a5ca7ff848b7652c7bfd4023a94a'/>
<id>urn:sha1:4e109ae98294a5ca7ff848b7652c7bfd4023a94a</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] MTD partition support, JFFS2 support</title>
<updated>2007-04-24T21:01:02Z</updated>
<author>
<name>Michal Simek</name>
<email>monstr@monstr.eu</email>
</author>
<published>2007-04-24T21:01:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=144876a380f5756f57412caf74c1d6dc201dd796'/>
<id>urn:sha1:144876a380f5756f57412caf74c1d6dc201dd796</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move "ar" flags to config.mk to allow for silent "make -s"</title>
<updated>2006-10-08T23:02:05Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@atlas.denx.de</email>
</author>
<published>2006-10-08T23:02:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=2b208f5308ae0c72a6840180e59ed1ab4f9b69fc'/>
<id>urn:sha1:2b208f5308ae0c72a6840180e59ed1ab4f9b69fc</id>
<content type='text'>
Based on patch by Mike Frysinger, 20 Jun 2006
</content>
</entry>
<entry>
<title>Add support for a saving build objects in a separate directory.</title>
<updated>2006-09-01T17:49:50Z</updated>
<author>
<name>Marian Balakowicz</name>
<email>m8@semihalf.com</email>
</author>
<published>2006-09-01T17:49:50Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f93286397ed2a7084efb0362a43ee09f11702349'/>
<id>urn:sha1:f93286397ed2a7084efb0362a43ee09f11702349</id>
<content type='text'>
Modifications are based on the linux kernel approach and
support two use cases:

  1) Add O= to the make command line
  'make O=/tmp/build all'

  2) Set environement variable BUILD_DIR to point to the desired location
  'export BUILD_DIR=/tmp/build'
  'make'

The second approach can also be used with a MAKEALL script
'export BUILD_DIR=/tmp/build'
'./MAKEALL'

Command line 'O=' setting overrides BUILD_DIR environent variable.

When none of the above methods is used the local build is performed and
the object files are placed in the source directory.
</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>Add support for Lite5200B board.</title>
<updated>2006-03-17T10:42:53Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2006-03-17T10:42:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=09e4b0c5d3881412519f33d498560a5bbcc82cd9'/>
<id>urn:sha1:09e4b0c5d3881412519f33d498560a5bbcc82cd9</id>
<content type='text'>
Patch by  Patch by Jose Maria (Txema) Lopez, 16 Jan 2006
</content>
</entry>
<entry>
<title>Add crc of data to jffs2 (in jffs2_1pass_build_lists()).</title>
<updated>2006-03-12T15:05:05Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2006-03-12T15:05:05Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=74f92e6a3f884b7fe86d2fb2acc114347defb0ae'/>
<id>urn:sha1:74f92e6a3f884b7fe86d2fb2acc114347defb0ae</id>
<content type='text'>
Patch by Rick Bronson, 15 Jun 2005
</content>
</entry>
</feed>
