<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/common/cmd_load.c, branch v1.3.1-rc1</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/common/cmd_load.c?h=v1.3.1-rc1</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/common/cmd_load.c?h=v1.3.1-rc1'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2007-07-10T16:02:44Z</updated>
<entry>
<title>common/: Remove lingering references to CFG_CMD_* symbols.</title>
<updated>2007-07-10T16:02:44Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2007-07-10T16:02:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=902531788376046da212afd1661cffb62f3daa1c'/>
<id>urn:sha1:902531788376046da212afd1661cffb62f3daa1c</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>common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.</title>
<updated>2007-07-08T23:02:23Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@freescale.com</email>
</author>
<published>2007-07-08T23:02:23Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c76fe47425afc7d5d670ff0539823c85d65d9c42'/>
<id>urn:sha1:c76fe47425afc7d5d670ff0539823c85d65d9c42</id>
<content type='text'>
Signed-off-by: Jon Loeliger &lt;jdl@freescale.com&gt;
</content>
</entry>
<entry>
<title>common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).</title>
<updated>2007-07-03T22:23:09Z</updated>
<author>
<name>Jon Loeliger</name>
<email>jdl@jdl.com</email>
</author>
<published>2007-06-12T00:01:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=65c450b47a62659d522cfa8f4fa1e4e5c60dccd0'/>
<id>urn:sha1:65c450b47a62659d522cfa8f4fa1e4e5c60dccd0</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>Declare load_serial_ymodem() when using CFG_CMD_LOADB.</title>
<updated>2006-05-01T22:11:25Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2006-05-01T22:11:25Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=8546e23902b6b84d30619cea050092234720ebd5'/>
<id>urn:sha1:8546e23902b6b84d30619cea050092234720ebd5</id>
<content type='text'>
Patch by Jon Loeliger, 01. May 2006
</content>
</entry>
<entry>
<title>Some code cleanup</title>
<updated>2006-04-16T08:51:58Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2006-04-16T08:51:58Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=cf48eb9abd76e5a056937a4e49be094826026abc'/>
<id>urn:sha1:cf48eb9abd76e5a056937a4e49be094826026abc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>* Add support for ymodem protocol download</title>
<updated>2006-04-01T13:52:46Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2006-04-01T13:52:46Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=534ff676a9c2ffd460e096754894e78551e4ed1e'/>
<id>urn:sha1:534ff676a9c2ffd460e096754894e78551e4ed1e</id>
<content type='text'>
  Patch by Stefano Babic, 29 Mar 2006

* Memory Map Update for Delta board: U-Boot is at 0x80000000-0x84000000

Merge with /home/mk/8-benq/u-boot
</content>
</entry>
<entry>
<title>GCC-4.x fixes: clean up global data pointer initialization for all boards.</title>
<updated>2006-03-31T16:32:53Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2006-03-31T16:32:53Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d87080b721e4f8dca977af7571c5338ae7bb8db7'/>
<id>urn:sha1:d87080b721e4f8dca977af7571c5338ae7bb8db7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add support for ymodem protocol (loady command).</title>
<updated>2006-03-30T11:40:55Z</updated>
<author>
<name>Markus Klotzbuecher</name>
<email>mk@denx.de</email>
</author>
<published>2006-03-30T11:40:55Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=f2841d377060cb2c3bedfcdfda6aab3066d6c4f1'/>
<id>urn:sha1:f2841d377060cb2c3bedfcdfda6aab3066d6c4f1</id>
<content type='text'>
Patch by Stefano Babic, 29 Mar 2006
</content>
</entry>
<entry>
<title>Cleanup for GCC-4.x</title>
<updated>2005-10-13T14:45:02Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@pollux.denx.de</email>
</author>
<published>2005-10-13T14:45:02Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=77ddac9480d63a80b6bb76d7ee4dcc2d1070867e'/>
<id>urn:sha1:77ddac9480d63a80b6bb76d7ee4dcc2d1070867e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add support for Siemens SX1 mobile phone;</title>
<updated>2004-03-12T00:14:09Z</updated>
<author>
<name>wdenk</name>
<email>wdenk</email>
</author>
<published>2004-03-12T00:14:09Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=232c150a250bb2fcb894b15d67c65df2458e271f'/>
<id>urn:sha1:232c150a250bb2fcb894b15d67c65df2458e271f</id>
<content type='text'>
add support for USB-based console
(enable with "setenv stdout usbtty; setenv stdin usbtty")
</content>
</entry>
</feed>
